2023-04-18 07:23:09 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
|
|
|
|
if [[ "$(pwd)" =~ " " ]]; then echo This script relies on Miniconda which can not be silently installed under a path with spaces. && exit; fi
|
|
|
|
|
2023-06-18 00:09:42 +02:00
|
|
|
# deactivate existing env if needed
|
|
|
|
conda deactivate 2> /dev/null
|
|
|
|
|
2023-04-18 07:23:09 +02:00
|
|
|
# config
|
|
|
|
CONDA_ROOT_PREFIX="$(pwd)/installer_files/conda"
|
|
|
|
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
|
|
|
|
|
2023-05-25 16:15:05 +02:00
|
|
|
# environment isolation
|
|
|
|
export PYTHONNOUSERSITE=1
|
|
|
|
unset PYTHONPATH
|
|
|
|
unset PYTHONHOME
|
|
|
|
export CUDA_PATH="$INSTALL_ENV_DIR"
|
|
|
|
export CUDA_HOME="$CUDA_PATH"
|
|
|
|
|
2023-04-18 07:23:09 +02:00
|
|
|
# activate env
|
2023-06-18 00:09:42 +02:00
|
|
|
source $CONDA_ROOT_PREFIX/etc/profile.d/conda.sh
|
|
|
|
conda activate $INSTALL_ENV_DIR
|
|
|
|
exec bash --norc
|