LocalAI/backend/python
Sertaç Özercan 6597881854
fix: exllama2 backend (#1484)
Signed-off-by: Sertac Ozercan <sozercan@gmail.com>
2023-12-24 08:32:12 +00:00
..
autogptq feat(diffusers): update, add autopipeline, controlnet (#1432) 2023-12-13 19:20:22 +01:00
bark feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
common-env/transformers env(conda): use transformers for vall-e-x (#1481) 2023-12-23 14:31:34 -05:00
diffusers feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
exllama feat(diffusers): update, add autopipeline, controlnet (#1432) 2023-12-13 19:20:22 +01:00
exllama2 fix: exllama2 backend (#1484) 2023-12-24 08:32:12 +00:00
petals feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
sentencetransformers feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
transformers feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
transformers-musicgen feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +01:00
vall-e-x env(conda): use transformers for vall-e-x (#1481) 2023-12-23 14:31:34 -05:00
vllm feat(conda): share envs with transformer-based backends (#1465) 2023-12-21 08:35:15 +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>