| @echo off |
|
|
| cd /D "%~dp0" |
|
|
| set PATH=%PATH%;%SystemRoot%\system32 |
|
|
| echo "%CD%"| findstr /C:" " >nul && echo This script relies on Miniconda which can not be silently installed under a path with spaces. && goto end |
| |
| |
| set TMP=%cd%\installer_files |
| set TEMP=%cd%\installer_files |
| |
| |
| (call conda deactivate && call conda deactivate && call conda deactivate) 2>nul |
| |
| |
| set CONDA_ROOT_PREFIX=%cd%\installer_files\conda |
| set INSTALL_ENV_DIR=%cd%\installer_files\env |
| |
| |
| set PYTHONNOUSERSITE=1 |
| set PYTHONPATH= |
| set PYTHONHOME= |
| set "CUDA_PATH=%INSTALL_ENV_DIR%" |
| set "CUDA_HOME=%CUDA_PATH%" |
| |
| |
| call "%CONDA_ROOT_PREFIX%\condabin\conda.bat" activate "%INSTALL_ENV_DIR%" || ( echo. && echo Miniconda hook not found. && goto end ) |
| |
| |
| cmd /k "%*" |
|
|
| :end |
| pause |
|
|