diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-01-26 07:54:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 07:54:13 +0100 |
commit | feb83c168b0a57ecd8c511aa654209c5f40da30e (patch) | |
tree | 84ef9a576064b7480e339426d9966b17a3102cad /README.md | |
parent | Merge pull request #1510 from hlohaus/sort (diff) | |
download | gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.gz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.bz2 gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.lz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.xz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.zst gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.zip |
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 |