You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @echo off
- setlocal
- cd /d "%~dp0"
-
- if exist "D:\Anaconda3\python.exe" (
- "D:\Anaconda3\python.exe" -B main.py
- goto :done
- )
-
- where py >nul 2>nul
- if not errorlevel 1 (
- py -3 -B main.py
- goto :done
- )
-
- where python >nul 2>nul
- if not errorlevel 1 (
- python -B main.py
- goto :done
- )
-
- echo Python 3 was not found.
- echo Install Python 3 and enable "Add Python to PATH", then try again.
- pause
-
- :done
- endlocal
|