LocalAI/backend/python
dependabot[bot] f24fac43da
chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/petals (#3070)
chore(deps): Bump setuptools in /backend/python/petals

Bumps [setuptools](https://github.com/pypa/setuptools) from 70.3.0 to 72.1.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/v70.3.0...v72.1.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-07-30 03:58:11 +00:00
..
autogptq chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/autogptq (#3048) 2024-07-29 21:45:52 +00:00
bark chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/bark (#2951) 2024-07-22 21:47:54 +00:00
common chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/common/template (#2963) 2024-07-23 01:07:42 +00:00
coqui chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/coqui (#3068) 2024-07-30 03:06:11 +00:00
diffusers chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/diffusers (#2969) 2024-07-23 03:47:26 +00:00
exllama fix: update grpcio version to match version used in builds (#2888) 2024-07-16 01:39:10 +00:00
exllama2 chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/exllama2 (#2971) 2024-07-23 04:03:28 +00:00
mamba chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/mamba (#2989) 2024-07-23 10:15:55 +00:00
openvoice chore(deps): Bump grpcio from 1.64.1 to 1.65.1 in /backend/python/openvoice (#2956) 2024-07-22 21:34:12 +00:00
parler-tts chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/parler-tts (#3062) 2024-07-30 01:21:56 +00:00
petals chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/petals (#3070) 2024-07-30 03:58:11 +00:00
rerankers chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/rerankers (#3067) 2024-07-30 02:15:53 +00:00
sentencetransformers chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/sentencetransformers (#2955) 2024-07-22 21:41:06 +00:00
transformers chore(deps): Bump grpcio from 1.65.0 to 1.65.1 in /backend/python/transformers (#2970) 2024-07-23 02:39:44 +00:00
transformers-musicgen chore(deps): Bump setuptools from 69.5.1 to 72.1.0 in /backend/python/transformers-musicgen (#3066) 2024-07-30 02:29:39 +00:00
vall-e-x chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/vall-e-x (#3069) 2024-07-30 03:27:00 +00:00
vllm chore(deps): Bump setuptools from 70.3.0 to 72.1.0 in /backend/python/vllm (#3061) 2024-07-30 00:43:12 +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>