xxxxxxxxxx
# PySchool - Python 3.10 distribution for Windows 7 and Up
# Tested and works fine on Windows 7
# https://sourceforge.net/projects/pyschool3/
xxxxxxxxxx
# For macOS/Linux
$ pyenv install 3.10.0
# For Windows
$ pyenv-win install 3.10.0
xxxxxxxxxx
// latest version python 2.7.14 for Windows 64 bits
https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi
xxxxxxxxxx
import wget
# Specify the URL for downloading Python 3.9 for Windows
url = 'https://www.python.org/ftp/python/3.9.9/python-3.9.9-amd64.exe'
# Specify the local path where the file will be saved
local_path = 'python-3.9.9-amd64.exe'
# Download Python 3.9 installer for Windows
wget.download(url, local_path)
xxxxxxxxxx
# https://www.python.org/downloads/release/python-370/
# change the last 3 digits in the link to determine version
# (e.g: '370' -> 3.7.0 && if you want 3.7.5 version just change them to '375')
xxxxxxxxxx
# Go to Python.org and use archives to explore past releases of Python.
# If you're using an IDE like Thonny, install Python 3.7.9 (depends on how updated your IDE is).
# Download your version of Python and click the executable. Then install after receiving the UAC prompt (Windows).