Move one-click-installers into the repository
This commit is contained in:
parent
05c4a4f83c
commit
b04b3957f9
15 changed files with 745 additions and 0 deletions
24
cmd_macos.sh
Executable file
24
cmd_macos.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/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
|
||||
|
||||
# deactivate existing env if needed
|
||||
conda deactivate 2> /dev/null
|
||||
|
||||
# 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
|
||||
source $CONDA_ROOT_PREFIX/etc/profile.d/conda.sh
|
||||
conda activate $INSTALL_ENV_DIR
|
||||
exec bash --norc
|
Loading…
Add table
Add a link
Reference in a new issue