mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-25 09:44:25 +01:00
10 lines
245 B
Bash
10 lines
245 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export SD_BASE_DIR=`pwd`
|
||
|
export MAMBA_ROOT_PREFIX="$SD_BASE_DIR/env/mamba"
|
||
|
export INSTALL_ENV_DIR="$SD_BASE_DIR/env/installer_env"
|
||
|
|
||
|
eval "$($MAMBA_ROOT_PREFIX/micromamba shell hook -s posix)"
|
||
|
|
||
|
micromamba activate "$INSTALL_ENV_DIR"
|