LocalAI/backend/python
dependabot[bot] 066fcce57b
chore(deps): Bump setuptools from 69.5.1 to 75.4.0 in /backend/python/transformers (#4117)
chore(deps): Bump setuptools in /backend/python/transformers

Bumps [setuptools](https://github.com/pypa/setuptools) from 69.5.1 to 75.4.0.
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](https://github.com/pypa/setuptools/compare/v69.5.1...v75.4.0)

---
updated-dependencies:
- dependency-name: setuptools
  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-11-11 21:42:24 +00:00
..
autogptq chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
bark chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
common chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
coqui chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
diffusers fix(diffusers): correctly parse height and width request without parametrization (#4082) 2024-11-06 08:53:02 +01:00
exllama2 chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
mamba chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
openvoice chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
parler-tts chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
rerankers chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
sentencetransformers chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
transformers chore(deps): Bump setuptools from 69.5.1 to 75.4.0 in /backend/python/transformers (#4117) 2024-11-11 21:42:24 +00:00
transformers-musicgen chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
vall-e-x chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01:00
vllm chore(deps): bump grpcio to 1.67.1 (#4009) 2024-10-29 15:04:21 +01: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>