LocalAI/backend/python
dependabot[bot] 6b59f79364
chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/exllama2 (#2809)
chore(deps): Bump grpcio in /backend/python/exllama2

Bumps [grpcio](https://github.com/grpc/grpc) from 1.64.0 to 1.64.1.
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](https://github.com/grpc/grpc/compare/v1.64.0...v1.64.1)

---
updated-dependencies:
- dependency-name: grpcio
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-13 03:46:28 +00:00
..
autogptq fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +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 Using exec when starting a backend instead of spawning a new process (#2720) 2024-07-05 16:59:18 +00:00
coqui chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/coqui (#2798) 2024-07-13 00:43:54 +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 dependencies(grpcio): bump to fix CI issues (#2362) 2024-05-21 14:33:47 +02: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 causal-conv1d from 1.2.0.post2 to 1.4.0 in /backend/python/mamba (#2792) 2024-07-13 01:34:59 +00:00
openvoice chore(deps): Bump inflect from 7.0.0 to 7.3.1 in /backend/python/openvoice (#2796) 2024-07-13 01:08:38 +00:00
parler-tts chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/parler-tts (#2797) 2024-07-13 01:12:19 +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 fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
sentencetransformers fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
transformers bugfix: CUDA acceleration not working (#2475) 2024-06-03 22:41:42 +02:00
transformers-musicgen fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
vall-e-x fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +00:00
vllm fix: pin version of setuptools for intel builds to work around #2406 (#2414) 2024-05-26 18:27:07 +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>