-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(python): pin python deps Signed-off-by: Ettore Di Giacinto <[email protected]>
- Loading branch information
Showing
6 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters