LocalAI/backend/python
Ettore Di Giacinto 7ca0e2d925
fix(python): remove pin to setuptools, pin python version (#4395)
fix(setuptools): remove pin

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2024-12-16 10:55:02 +01:00
..
autogptq fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
bark fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
common fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
coqui fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
diffusers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
exllama2 chore(deps): bump grpcio to 1.68.1 (#4301) 2024-12-02 19:13:26 +01:00
mamba chore(deps): bump grpcio to 1.68.1 (#4301) 2024-12-02 19:13:26 +01:00
openvoice fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
parler-tts fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
rerankers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
sentencetransformers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
transformers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
transformers-musicgen fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
vall-e-x fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
vllm fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
README.md refactor: move backends into the backends directory (#1279) 2023-11-13 22:40:16 +01:00

Common commands about conda environment

Create a new empty conda environment

conda create --name <env-name> python=<your version> -y

conda create --name autogptq python=3.11 -y

To activate the environment

As of conda 4.4

conda activate autogptq

The conda version older than 4.4

source activate autogptq

Install the packages to your environment

Sometimes you need to install the packages from the conda-forge channel

By using conda

conda install <your-package-name>

conda install -c conda-forge <your package-name>

Or by using pip

pip install <your-package-name>