Installing Python3 on Windows

Installing Python3 on Windows

Python is a very popular high-level, general-purpose programming language, created by Guido van Rossum. Python can be used for a wide variety of applications, some of these applications include, web development, machine learning, automation or scripting, software testing/prototyping.

In this tutorial we'll be going through, how you can install Python3 (The Latest version) on Windows.

Note: Since I'm a Windows user, in this tutorial I'll only be covering how to install Python3 on Window, but if you want to install or update Python on MacOS, check this tutorial by Flavio Copes and if you are a Linux user, check out this tutorial on opensource.om

Let's install Python

There are many different ways you can install Python on Windows. Today we'll be installing python through the official Python Website, the way I installed it as a beginner.

So without further ado, let's get started.

Step 1: Check for available installation of python.

To start off, check your system for any previous installations of python. To do so, enter the following command on Command Prompt or PowerShell.

python --version

python-version.webp If you get an output like the above, then you already have python installed on your machine. But if it is an older version or you want to update it to the latest version, check out my tutorial on How to Update Python on Windows.

If you don't get an output as the above and instead get an error message, don't panic, it means you don't have python installed. Follow along, to install python.

Step 2: Download the latest Python Executable

Now, to download the latest executable installer of python, do the following in you browser.

python-download-page-for-windows.webp

  • Scroll to your desired version of python (I recommend the latest) and depending on your system, click on either of the two Windows Installer links (34-bit or 64-bit) under the version you are looking for.

python-windows-executable-links.webp

Step 3: Run the Downloaded Executable

After you downloaded the installer successfully, run it and you will be presented with the following window:

python-installation-window.webp Once you are prompted with the above window, make sure the two boxes labelled Install launcher for all users (recommended) and Add Python x.x to path are checked and then click on Install Now.

After the Installation is complete, you will be prompted with an installation successful window and a Disable path length limit option. Selecting this option does not affect your system settings instead it will resolve potential name length issues that may arise.

python-disable-path-length-limit.webp

Step 4: Verify Python3 Installation

Now that you have successfully installed python, let's verify the installation. To do so, open Command Prompt/PowerShell and enter the following command:

python

The output should be similar to the following:

python-command.webp

Note: You can also verify the installation by entering python --version on your terminal. The output should be similar to the following.python-version.webp

Troubleshooting

If you installed an older version of python or messed up something in the installation and get an output like the one below:

'python' is not recognized as an internal or external command, operable program or batch file

You might want to add python to your system path. To add python to your system path, follow the below steps:

  • Firstly press the Windows Key + r, then type in sysdm.cpl, this opens the System Properties window.

windows-run.webp

  • Then, navigate to the Advanced tab and select Environment Variables.

environment-variables.webp

  • Then under System Variables, select the Path variable.

path-variable.webp

  • Click Edit.

path-variable-edit.webp

  • Then click on New to add Python to the Path.

path-variable-new.webp

  • Then type in the path to the python.exe file. (If you followed this tutorial, your path must be 'C:\Program Files\Python310\')

python-path-added.webp

  • Then click OK, OK, Apply and finally OK

  • And now if you verify this by entering python on your terminal, you must get the desired output.

Conclusion

Congratulations! You have successfully installed Python onto your Windows Machine. If you had any problems following this tutorial to install Python, let me know in the comments down below, I'll do my best to help you around it. Hope this tutorial helped you install Python easily, stay tuned for more!!😉