mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 10:35:01 +00:00
fix(python): pin exllama2 (#1711)
fix(python): pin python deps Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
39a6b562cf
commit
5e155fb081
6 changed files with 43 additions and 11 deletions
24
backend/python/diffusers/install.sh
Executable file
24
backend/python/diffusers/install.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
set -ex
|
||||
|
||||
# Check if environment exist
|
||||
conda_env_exists(){
|
||||
! conda list --name "${@}" >/dev/null 2>/dev/null
|
||||
}
|
||||
|
||||
if conda_env_exists "diffusers" ; then
|
||||
echo "Creating virtual environment..."
|
||||
conda env create --name diffusers --file $1
|
||||
echo "Virtual environment created."
|
||||
else
|
||||
echo "Virtual environment already exists."
|
||||
fi
|
||||
|
||||
if [ "$PIP_CACHE_PURGE" = true ] ; then
|
||||
export PATH=$PATH:/opt/conda/bin
|
||||
|
||||
# Activate conda environment
|
||||
source activate diffusers
|
||||
|
||||
pip cache purge
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue