Installing Python in Windows is actually easier than in Linux...
1) Download the executable installer
2) Execute as Administrator
3) Install for ALL users, INCLUDING the launcher (py.exe)
#PythonDev #python #windows 🧵
1) Download the executable installer
2) Execute as Administrator
3) Install for ALL users, INCLUDING the launcher (py.exe)
#PythonDev #python #windows 🧵
Comments
PATHEXT=.COM;.EXE;.BAT;.CMD;.PY;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
5) Create a file named https://pytest.py in a directory that is in PATH:
#! python3
print("Hello Monty!")
6) Execute by typing pytest in a CMD prompt and enjoy
#PythonDev #python #windows