Update to correct pip install for litellm (#2602)

The doc mentions `pip install litellm[proxy]` which won't work. The correct command is  `pip install 'litellm[proxy]'`.
This commit is contained in:
r48Bit 2024-05-06 21:48:01 +05:30 committed by GitHub
parent 498aa7f367
commit 9418b179c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ Note: We recommend using a virtual environment for your stack, see [this article
Install LiteLLM with the proxy server functionality:
```bash
pip install litellm[proxy]
pip install 'litellm[proxy]'
```
Note: If using Windows, run LiteLLM and Ollama within a [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install).