LocalAI/backend/python
Rene Leonhardt fc87507012
chore(deps): Update Dependencies (#2538)
* chore(deps): Update dependencies

Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>

* chore(deps): Upgrade github.com/imdario/mergo to dario.cat/mergo

Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>

* remove version identifiers for MeloTTS

Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>

---------

Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>
Signed-off-by: Dave <dave@gray101.com>
Co-authored-by: Dave <dave@gray101.com>
2024-07-12 19:54:08 +00:00
..
autogptq fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
bark fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
common Using exec when starting a backend instead of spawning a new process (#2720) 2024-07-05 16:59:18 +00:00
coqui TTS API improvements (#2308) 2024-06-01 18:26:27 +00:00
diffusers feat(sd-3): add stablediffusion 3 support (#2591) 2024-06-18 15:09:39 +02:00
exllama dependencies(grpcio): bump to fix CI issues (#2362) 2024-05-21 14:33:47 +02:00
exllama2 dependencies(grpcio): bump to fix CI issues (#2362) 2024-05-21 14:33:47 +02:00
mamba dependencies(grpcio): bump to fix CI issues (#2362) 2024-05-21 14:33:47 +02:00
openvoice chore(deps): Update Dependencies (#2538) 2024-07-12 19:54:08 +00:00
parler-tts fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
petals fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
rerankers fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
sentencetransformers fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
transformers bugfix: CUDA acceleration not working (#2475) 2024-06-03 22:41:42 +02:00
transformers-musicgen fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
vall-e-x fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
vllm fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +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>