LocalAI/backend/python
dependabot[bot] 74c6a735ca
chore(deps): Bump torch in /backend/python/diffusers
Bumps torch from 2.3.1+rocm6.0 to 2.5.1+cxx11.abi.

---
updated-dependencies:
- dependency-name: torch
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 18:51:19 +00:00
..
autogptq fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
bark fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
common fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
coqui fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
diffusers chore(deps): Bump torch in /backend/python/diffusers 2024-12-16 18:51:19 +00:00
exllama2 chore(deps): bump grpcio to 1.68.1 (#4301) 2024-12-02 19:13:26 +01:00
mamba chore(deps): bump grpcio to 1.68.1 (#4301) 2024-12-02 19:13:26 +01:00
openvoice fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
parler-tts fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
rerankers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
sentencetransformers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
transformers fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
transformers-musicgen fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
vall-e-x fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01:00
vllm fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +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>