Uh oh!
There was an error while loading. Please reload this page.
forked from gregmalcolm/python_koans
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
Latest commit
executable file
·44 lines (36 loc) · 816 Bytes
/
Copy pathrun.bat
File metadata and controls
executable file
·44 lines (36 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@echooff
REM This is how you run it from the command line.
REM You don't actually need this script!
SETRUN_KOANS=python.exe -B contemplate_koans.py
REM Set this to your python folder:
SETPYTHON_PATH=C:\Python39
setSCRIPT=
:loop
REM Hunt around for python
IFEXIST"python.exe" (
SETSCRIPT=%RUN_KOANS%
) ELSE (
IFEXIST"%PYTHON_PATH%" (
SETSCRIPT=%PYTHON_PATH%\%RUN_KOANS%
) ELSE (
IFEXIST%PYTHON%SETSCRIPT=%PYTHON%\%RUN_KOANS%
)
)
IFNOT""=="%SCRIPT%" (
%SCRIPT%
pause
) ELSE (
echo.
echo Python.exe is not in the path!
echo.
echo Fix the path and try again.
echo Or better yet, run this with the correct python path:
echo.
echo python.exe contemplate_koans.py
pause
)
Set /p keepgoing="Test again? y or n - "
if"%keepgoing%"=="y" (
goto loop
)
:end