LocalAI/backend/python
cryptk a3eb6e04c1
fix: update grpcio version to match version used in builds (#2888)
Signed-off-by: Chris Jowett <421501+cryptk@users.noreply.github.com>
2024-07-16 01:39:10 +00:00
..
autogptq fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
bark fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
common fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
coqui fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
diffusers fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
exllama fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
exllama2 fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
mamba fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
openvoice fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
parler-tts fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +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 fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
sentencetransformers fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
transformers fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
transformers-musicgen fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
vall-e-x fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
vllm fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +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>