windows install python 3.7 code example

Example 1: install python3

echo This is for linux. (debian/unbuntu)
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget
curl -O https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tar.xz
tar -xf Python-3.7.4.tar.xz
cd Python-3.7.4
./configure --enable-optimizations
make
sudo make altinstall
python3.7 --version
cd ../

Example 2: where is python installed windows

1. Open start menu and type python
2. Right click on python and select open file location. It will a window in explorer just like below.
3. Again , right click on selected python and select open file location. A window will open and you are now in python’s installation directory.

Example 3: install python 3.7

# 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).