File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
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- exit /b
23+ pause
2424)
2525IF " %version% " GEQ " 3.11" (
2626 echo Your version of Python is not supported. Please install Python 3.10
27- exit /b
27+ pause
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- exit /b
20+ pause
2121)
2222IF " %version% " GEQ " 3.11" (
2323 echo Your version of Python is not supported. Please install Python 3.10
24- exit /b
24+ pause
2525)
2626
2727python -m venv venv
You can’t perform that action at this time.
0 commit comments