LocalAI/backend/python
Ettore Di Giacinto 121bce581c
Revert "chore(deps): Bump numpy from 1.26.4 to 2.0.0 in /backend/python/openvoice" (#2868)
Revert "chore(deps): Bump numpy from 1.26.4 to 2.0.0 in /backend/python/openv…"

This reverts commit 6ba730d7f8.
2024-07-15 08:31:27 +02:00
..
autogptq chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/autogptq (#2816) 2024-07-13 13:18:22 +00:00
bark chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/bark (#2831) 2024-07-13 12:39:57 +00:00
common chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/common/template (#2802) 2024-07-13 04:06:56 +00:00
coqui chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/coqui (#2825) 2024-07-13 06:47:13 +00:00
diffusers chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/diffusers (#2833) 2024-07-13 13:15:01 +00:00
exllama chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/exllama (#2841) 2024-07-13 08:46:53 +00:00
exllama2 chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/exllama2 (#2809) 2024-07-13 03:46:28 +00:00
mamba chore(deps): Bump torch from 2.2.0 to 2.3.1 in /backend/python/mamba (#2835) 2024-07-13 22:02:01 +00:00
openvoice Revert "chore(deps): Bump numpy from 1.26.4 to 2.0.0 in /backend/python/openvoice" (#2868) 2024-07-15 08:31:27 +02:00
parler-tts chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/parler-tts (#2818) 2024-07-13 06:31:47 +00:00
petals chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/petals (#2799) 2024-07-13 01:20:56 +00:00
rerankers chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/rerankers (#2834) 2024-07-13 16:11:33 +00:00
sentencetransformers chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/sentencetransformers (#2838) 2024-07-13 22:22:37 +00:00
transformers chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/transformers (#2837) 2024-07-13 15:03:35 +00:00
transformers-musicgen chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/transformers-musicgen (#2844) 2024-07-13 20:48:22 +00:00
vall-e-x chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/vall-e-x (#2830) 2024-07-13 15:46:18 +00:00
vllm chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/vllm (#2839) 2024-07-13 16:29:35 +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>