LocalAI/backend/python
Ettore Di Giacinto 70798a3495 fix(intel): pin torch version
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2024-12-19 15:27:06 +01:00
..
autogptq fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
bark fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
common fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
coqui fix(intel): pin torch version 2024-12-19 15:27:06 +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(intel): pin torch version 2024-12-19 15:27:06 +01:00
parler-tts fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
rerankers fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
sentencetransformers fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
transformers fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
transformers-musicgen fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
vall-e-x fix(intel): pin torch version 2024-12-19 15:27:06 +01:00
vllm fix(intel): pin torch version 2024-12-19 15:27:06 +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>