We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 555246a commit 77d1428Copy full SHA for 77d1428
install_requirements.bat
@@ -7,14 +7,8 @@ rem This batch file provides a basic functionality similar to the bash script.
7
8
cd /d "%~dp0"
9
10
-rem Find the names of the python tools to use (replace with your actual python installation)
11
-if "%PYTHON_EXECUTABLE%"=="" (
12
- if "%CONDA_DEFAULT_ENV%"=="" OR "%CONDA_DEFAULT_ENV%"=="base" OR NOT EXIST "python" (
13
- set PYTHON_EXECUTABLE=python3
14
- ) else (
15
- set PYTHON_EXECUTABLE=python
16
- )
17
-)
+rem Under windows it's always python
+set PYTHON_EXECUTABLE=python
18
19
"%PYTHON_EXECUTABLE%" install_requirements.py %*
20
0 commit comments