2024-07-25 03:23:29 +02:00
|
|
|
#!/usr/bin/env bash
|
2023-09-22 00:35:53 +02:00
|
|
|
|
|
|
|
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-09-22 04:52:29 +02:00
|
|
|
# deactivate existing conda envs as needed to avoid conflicts
|
|
|
|
{ conda deactivate && conda deactivate && conda deactivate; } 2> /dev/null
|
|
|
|
|
2023-09-22 00:35:53 +02:00
|
|
|
# config
|
|
|
|
CONDA_ROOT_PREFIX="$(pwd)/installer_files/conda"
|
|
|
|
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
|
|
|
|
|
|
|
|
# environment isolation
|
|
|
|
export PYTHONNOUSERSITE=1
|
|
|
|
unset PYTHONPATH
|
|
|
|
unset PYTHONHOME
|
|
|
|
export CUDA_PATH="$INSTALL_ENV_DIR"
|
|
|
|
export CUDA_HOME="$CUDA_PATH"
|
|
|
|
|
|
|
|
# activate env
|
|
|
|
bash --init-file <(echo "source \"$CONDA_ROOT_PREFIX/etc/profile.d/conda.sh\" && conda activate \"$INSTALL_ENV_DIR\"")
|