LocalAI/backend/python
dependabot[bot] 5305d4dcbf
chore(deps): Bump librosa from 0.9.1 to 0.10.2.post1 in /backend/python/openvoice (#2836)
chore(deps): Bump librosa in /backend/python/openvoice

Bumps [librosa](https://github.com/librosa/librosa) from 0.9.1 to 0.10.2.post1.
- [Release notes](https://github.com/librosa/librosa/releases)
- [Changelog](https://github.com/librosa/librosa/blob/main/docs/changelog.rst)
- [Commits](https://github.com/librosa/librosa/compare/0.9.1...0.10.2.post1)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-13 16:51:10 +00: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 mamba-ssm from 1.2.0.post1 to 2.2.2 in /backend/python/mamba (#2821) 2024-07-13 10:33:21 +00:00
openvoice chore(deps): Bump librosa from 0.9.1 to 0.10.2.post1 in /backend/python/openvoice (#2836) 2024-07-13 16:51:10 +00: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 sentence-transformers from 2.5.1 to 3.0.1 in /backend/python/sentencetransformers (#2826) 2024-07-13 15:23:32 +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 scipy from 1.13.0 to 1.14.0 in /backend/python/transformers-musicgen (#2842) 2024-07-13 09:01:23 +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>