diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -100,7 +100,7 @@ or set the api base in your client to: [http://localhost:1337/v1](http://localho ##### Install using pypi: ``` -pip install -U g4f +pip install -U "g4f[all]" ``` ##### or: @@ -134,13 +134,19 @@ python3 -m venv venv ``` source venv/bin/activate ``` -5. Install the required Python packages from `requirements.txt`: +5. Install minimum requirements: + +``` +pip install -r requirements-min.txt +``` + +6. Or install all used Python packages from `requirements.txt`: ``` pip install -r requirements.txt ``` -6. Create a `test.py` file in the root folder and start using the repo, further Instructions are below +7. Create a `test.py` file in the root folder and start using the repo, further Instructions are below ```py import g4f |