File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,23 @@ cd /D "%~dp0"
66@ rem Make sure the environment variables are up-to-date. This is useful if the user installed python a moment ago.
77call ./RefreshEnv.cmd
88
9+ python -V > nul 2 >& 1 && (
10+ for /f " delims=" %%a in ('python -V') do @ set pythonVer = %%a
11+ (echo %pythonVer% | findstr /i " 3.6. 3.7." > nul ) && (
12+ goto continue
13+ ) || (
14+ echo It appears that version of the installed Python is not supported.
15+ echo Please install version 3.6.5!
16+ goto end
17+ )
18+ ) || (
19+ echo Python was not found!
20+ echo If you recently installed Python reinstall it and check the " Add to PATH" during the installation.
21+ goto end
22+ )
23+ :continue
24+
925python run.py gui
1026
27+ :end
1128pause
Original file line number Diff line number Diff line change @@ -6,6 +6,23 @@ cd /D "%~dp0"
66@ rem Make sure the environment variables are up-to-date. This is useful if the user installed python a moment ago.
77call ./RefreshEnv.cmd
88
9+ python -V > nul 2 >& 1 && (
10+ for /f " delims=" %%a in ('python -V') do @ set pythonVer = %%a
11+ (echo %pythonVer% | findstr /i " 3.6. 3.7." > nul ) && (
12+ goto continue
13+ ) || (
14+ echo It appears that version of the installed Python is not supported.
15+ echo Please install version 3.6.5!
16+ goto end
17+ )
18+ ) || (
19+ echo Python was not found!
20+ echo If you recently installed Python reinstall it and check the " Add to PATH" during the installation.
21+ goto end
22+ )
23+ :continue
24+
925python run.py
1026
27+ :end
1128pause
You can’t perform that action at this time.
0 commit comments