File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ python -c "import sys; print(sys.version_info[:2])" > version.txt
2020set /p version = < version.txt
2121IF " %version% " LSS " 3.10" (
2222 echo Your version of Python is not supported. Please install Python 3.10
23- pause
23+ exit /b
2424)
2525IF " %version% " GEQ " 3.11" (
2626 echo Your version of Python is not supported. Please install Python 3.10
27- pause
27+ exit /b
2828)
2929
3030python -m venv venv
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ python -c "import sys; print(sys.version_info[:2])" > version.txt
1717set /p version = < version.txt
1818IF " %version% " LSS " 3.10" (
1919 echo Your version of Python is not supported. Please install Python 3.10
20- pause
20+ exit /b
2121)
2222IF " %version% " GEQ " 3.11" (
2323 echo Your version of Python is not supported. Please install Python 3.10
24- pause
24+ exit /b
2525)
2626
2727python -m venv venv
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments