LocalAI/backend/python
Ettore Di Giacinto 5c3d1d81e6
fix(parler-tts): fix install with sycl (#3624)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2024-09-21 16:04:04 +02:00
..
autogptq chore(deps): Bump setuptools from 72.1.0 to 75.1.0 in /backend/python/autogptq (#3553) 2024-09-16 21:46:26 +00:00
bark chore(deps): Bump setuptools from 70.3.0 to 75.1.0 in /backend/python/bark (#3574) 2024-09-17 02:32:33 +00:00
common chore(cli): be consistent between workers and expose ExtraLLamaCPPArgs to both (#3428) 2024-08-30 00:10:17 +02:00
coqui chore(deps): Bump setuptools from 72.1.0 to 75.1.0 in /backend/python/coqui (#3554) 2024-09-16 21:23:06 +00:00
diffusers chore(deps): Bump setuptools from 70.3.0 to 75.1.0 in /backend/python/diffusers (#3575) 2024-09-17 02:28:05 +00:00
exllama2 chore(cli): be consistent between workers and expose ExtraLLamaCPPArgs to both (#3428) 2024-08-30 00:10:17 +02:00
mamba chore(cli): be consistent between workers and expose ExtraLLamaCPPArgs to both (#3428) 2024-08-30 00:10:17 +02:00
openvoice chore(deps): Bump pypinyin from 0.50.0 to 0.53.0 in /backend/python/openvoice (#3562) 2024-09-17 10:24:34 +02:00
parler-tts fix(parler-tts): fix install with sycl (#3624) 2024-09-21 16:04:04 +02:00
rerankers chore(deps): Bump setuptools from 72.1.0 to 75.1.0 in /backend/python/rerankers (#3578) 2024-09-17 03:24:30 +00:00
sentencetransformers feat: allow setting trust_remote_code for sentencetransformers backend (#3552) 2024-09-17 05:52:37 +00:00
transformers Revert "chore(deps): Bump setuptools from 69.5.1 to 75.1.0 in /backend/python/transformers" (#3586) 2024-09-17 09:06:07 +02:00
transformers-musicgen chore(deps): Bump setuptools from 69.5.1 to 75.1.0 in /backend/python/transformers-musicgen (#3564) 2024-09-16 23:03:06 +00:00
vall-e-x chore(deps): Bump setuptools from 72.1.0 to 75.1.0 in /backend/python/vall-e-x (#3570) 2024-09-17 00:51:55 +00:00
vllm chore(deps): Bump setuptools from 70.3.0 to 75.1.0 in /backend/python/vllm (#3580) 2024-09-17 03:41:01 +00: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>