LocalAI/backend/python
B4ckslash 2d64d8b444
fix/docs: Python backend dependencies (#1360)
* Update docs for new requirements.txt path

Signed-off-by: Marcus Köhler <khler.marcus@gmail.com>

* Fix typo (.PONY -> .PHONY) in python backend makefiles

Signed-off-by: Marcus Köhler <khler.marcus@gmail.com>

---------

Signed-off-by: Marcus Köhler <khler.marcus@gmail.com>
2023-11-30 17:46:55 +01:00
..
autogptq fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
bark fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
diffusers fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
exllama fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
petals fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
sentencetransformers fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
transformers fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
vall-e-x fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01:00
vllm fix/docs: Python backend dependencies (#1360) 2023-11-30 17:46:55 +01: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>