LocalAI/backend/python
cryptk ed322bf59f
fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890)
* fix: ensure correct version of torch is always installed based on BUILD_TYPE

Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com>

* Move causal-conv1d installation to build_types

Signed-off-by: mudler <mudler@localai.io>

* Move mamba-ssd install to build-type requirements.txt

Signed-off-by: mudler <mudler@localai.io>

---------

Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com>
Signed-off-by: mudler <mudler@localai.io>
Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
Co-authored-by: mudler <mudler@localai.io>
2024-08-05 16:38:33 +00:00
..
autogptq fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
bark fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
common fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
coqui fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
diffusers fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
exllama fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
exllama2 fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
mamba fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
openvoice fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
parler-tts fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
petals fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
rerankers fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
sentencetransformers fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
transformers fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
transformers-musicgen fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
vall-e-x fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +00:00
vllm fix: ensure correct version of torch is always installed based on BUILD_TYPE(#2890) 2024-08-05 16:38:33 +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>