LocalAI/backend/python
dependabot[bot] 6ba730d7f8
chore(deps): Bump numpy from 1.26.4 to 2.0.0 in /backend/python/openvoice (#2823)
chore(deps): Bump numpy in /backend/python/openvoice

Bumps [numpy](https://github.com/numpy/numpy) from 1.26.4 to 2.0.0.
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](https://github.com/numpy/numpy/compare/v1.26.4...v2.0.0)

---
updated-dependencies:
- dependency-name: numpy
  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-13 19:46:21 +00:00
..
autogptq chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/autogptq (#2816) 2024-07-13 13:18:22 +00:00
bark chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/bark (#2831) 2024-07-13 12:39:57 +00:00
common chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/common/template (#2802) 2024-07-13 04:06:56 +00:00
coqui chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/coqui (#2825) 2024-07-13 06:47:13 +00:00
diffusers chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/diffusers (#2833) 2024-07-13 13:15:01 +00:00
exllama chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/exllama (#2841) 2024-07-13 08:46:53 +00: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 grpcio from 1.64.0 to 1.64.1 in /backend/python/mamba (#2808) 2024-07-13 18:02:09 +00:00
openvoice chore(deps): Bump numpy from 1.26.4 to 2.0.0 in /backend/python/openvoice (#2823) 2024-07-13 19:46:21 +00:00
parler-tts chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/parler-tts (#2818) 2024-07-13 06:31:47 +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 chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/rerankers (#2834) 2024-07-13 16:11:33 +00:00
sentencetransformers chore(deps): Bump sentence-transformers from 2.5.1 to 3.0.1 in /backend/python/sentencetransformers (#2826) 2024-07-13 15:23:32 +00:00
transformers chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/transformers (#2837) 2024-07-13 15:03:35 +00:00
transformers-musicgen chore(deps): Bump setuptools from 69.5.1 to 70.3.0 in /backend/python/transformers-musicgen (#2843) 2024-07-13 17:10:38 +00:00
vall-e-x chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/vall-e-x (#2830) 2024-07-13 15:46:18 +00:00
vllm chore(deps): Bump grpcio from 1.64.0 to 1.64.1 in /backend/python/vllm (#2839) 2024-07-13 16:29:35 +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>