LocalAI/backend/python
dependabot[bot] 4a4cf3e98e
chore(deps): Bump gradio in /backend/python/openvoice
Bumps [gradio](https://github.com/gradio-app/gradio) from 3.48.0 to 5.9.0.
- [Release notes](https://github.com/gradio-app/gradio/releases)
- [Changelog](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gradio-app/gradio/compare/gradio@3.48.0...gradio@5.9.0)

---
updated-dependencies:
- dependency-name: gradio
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 19:21:05 +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 fix(python): remove pin to setuptools, pin python version (#4395) 2024-12-16 10:55:02 +01: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 chore(deps): Bump gradio in /backend/python/openvoice 2024-12-16 19:21:05 +00: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>