LocalAI/backend/python
dependabot[bot] 1c2e54e5be
chore(deps): Bump mamba-ssm from 1.2.0.post1 to 2.2.2 in /backend/python/mamba (#2821)
chore(deps): Bump mamba-ssm in /backend/python/mamba

Bumps [mamba-ssm](https://github.com/state-spaces/mamba) from 1.2.0.post1 to 2.2.2.
- [Release notes](https://github.com/state-spaces/mamba/releases)
- [Commits](https://github.com/state-spaces/mamba/compare/v1.2.0.post1...v2.2.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-13 10:33:21 +00:00
..
autogptq chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/autogptq (#2800) 2024-07-13 04:24:29 +00:00
bark chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/bark (#2805) 2024-07-13 02:54:42 +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 setuptools from 69.5.1 to 70.3.0 in /backend/python/diffusers (#2807) 2024-07-13 03:26:48 +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 faster-whisper from 0.9.0 to 1.0.3 in /backend/python/openvoice (#2829) 2024-07-13 07:58:23 +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 grpcio from 1.64.0 to 1.64.1 in /backend/python/rerankers (#2819) 2024-07-13 06:13:33 +00:00
sentencetransformers chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/sentencetransformers (#2813) 2024-07-13 05:48:24 +00:00
transformers chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/transformers (#2817) 2024-07-13 05:47:24 +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 setuptools from 69.5.1 to 70.3.0 in /backend/python/vall-e-x (#2812) 2024-07-13 05:18:54 +00:00
vllm chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/vllm (#2820) 2024-07-13 06:45:29 +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>