mirror of
https://github.com/mudler/LocalAI.git
synced 2025-01-15 17:30:10 +00:00
b3b8010930
chore(deps): Bump causal-conv1d in /backend/python/mamba Bumps [causal-conv1d](https://github.com/Dao-AILab/causal-conv1d) from 1.2.0.post2 to 1.4.0. - [Release notes](https://github.com/Dao-AILab/causal-conv1d/releases) - [Commits](https://github.com/Dao-AILab/causal-conv1d/compare/v1.2.0.post2...v1.4.0) --- updated-dependencies: - dependency-name: causal-conv1d dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
autogptq | ||
bark | ||
common | ||
coqui | ||
diffusers | ||
exllama | ||
exllama2 | ||
mamba | ||
openvoice | ||
parler-tts | ||
petals | ||
rerankers | ||
sentencetransformers | ||
transformers | ||
transformers-musicgen | ||
vall-e-x | ||
vllm | ||
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>