LocalAI/backend/python
dependabot[bot] 10024905a0
chore(deps): Bump grpcio from 1.65.0 to 1.65.5 in /backend/python/exllama (#3299)
chore(deps): Bump grpcio in /backend/python/exllama

Bumps [grpcio](https://github.com/grpc/grpc) from 1.65.0 to 1.65.5.
- [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.65.0...v1.65.5)

---
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-08-20 04:36:21 +00:00
..
autogptq chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/autogptq (#3130) 2024-08-05 21:32:10 +00:00
bark chore(deps): Bump grpcio from 1.65.4 to 1.65.5 in /backend/python/bark (#3285) 2024-08-19 23:19:43 +00:00
common chore(deps): Bump grpcio from 1.65.4 to 1.65.5 in /backend/python/common/template (#3291) 2024-08-20 01:57:59 +00:00
coqui fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
diffusers feat(diffusers): support flux models (#3129) 2024-08-11 01:31:53 +02:00
exllama chore(deps): Bump grpcio from 1.65.0 to 1.65.5 in /backend/python/exllama (#3299) 2024-08-20 04:36:21 +00:00
exllama2 fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
mamba fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
openvoice chore(deps): Bump grpcio from 1.65.4 to 1.65.5 in /backend/python/openvoice (#3282) 2024-08-19 22:31:06 +00:00
parler-tts chore(deps): Bump grpcio from 1.65.1 to 1.65.5 in /backend/python/parler-tts (#3283) 2024-08-19 23:37:57 +00:00
petals fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
rerankers fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
sentencetransformers chore(deps): Bump grpcio from 1.65.1 to 1.65.5 in /backend/python/sentencetransformers (#3292) 2024-08-20 02:09:41 +00:00
transformers chore(deps): Bump grpcio from 1.65.4 to 1.65.5 in /backend/python/transformers (#3296) 2024-08-20 03:37:40 +00:00
transformers-musicgen fix(python): move accelerate and GPU-specific libs to build-type (#3194) 2024-08-07 17:02:32 +02:00
vall-e-x chore(deps): Bump grpcio from 1.65.4 to 1.65.5 in /backend/python/vall-e-x (#3294) 2024-08-20 02:36:20 +00:00
vllm fix(python): move vllm to after deps, drop diffusers main deps 2024-08-07 23:34:37 +02: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>