LocalAI/backend/python
dependabot[bot] 7bf5cc50b5
chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/vall-e-x (#3156)
chore(deps): Bump grpcio in /backend/python/vall-e-x

Bumps [grpcio](https://github.com/grpc/grpc) from 1.65.1 to 1.65.4.
- [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.1...v1.65.4)

---
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-06 04:50:40 +00:00
..
autogptq
bark chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/bark (#3144) 2024-08-06 01:21:26 +00:00
common
coqui chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/coqui (#3138) 2024-08-05 22:27:49 +00:00
diffusers chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/diffusers (#3141) 2024-08-05 23:27:07 +00:00
exllama
exllama2 chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/exllama2 (#3146) 2024-08-06 01:08:38 +00:00
mamba
openvoice
parler-tts
petals
rerankers chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/rerankers (#3147) 2024-08-06 01:44:31 +00:00
sentencetransformers
transformers chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/transformers (#3161) 2024-08-06 04:46:39 +00:00
transformers-musicgen chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/transformers-musicgen (#3140) 2024-08-05 22:30:08 +00:00
vall-e-x chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/vall-e-x (#3156) 2024-08-06 04:50:40 +00:00
vllm chore(deps): Bump grpcio from 1.65.1 to 1.65.4 in /backend/python/vllm (#3152) 2024-08-06 03:12:15 +00:00
README.md

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>