Installing Python on Windows

Reading Time: 2 minutes

Installing Python on Windows shows how to install Python step-by-step.

I’ve been using Python on Linux, and I’d like to run it on Windows. So, I decided to create this simple article showing all the necessary steps to install Python on Windows. In this case, I’m running Windows 11 (I did not test it on previous Windows releases).

Downloading Python Installer

The first step is to download the Python installer:

https://www.python.org/downloads/windows

In my case, I’m using the 64-bit version (choose the best version for you):

Installing Python on Windows

Installing Python on Windows is straightforward. Double-click the Python installer and follow the installation wizard as shown in the following pictures.

Note: Mark the option “Add python.exe to PATH” – it avoids the most Python issues on Windows!

Validating Python Installation

After installing, we can check the Python and Pip versions:

  1. Open the command-line (cmd).
  2. Execute the following commands:
python --version
pip --version

If you see Python and Pip versions, your Python installation was successful!

That’s it for now 🙂

Similar Posts

  • Setting Up Windows AD FS

    Reading Time: 5 minutesSetting Up Windows AD FS is an article that shows how to set up the Windows AD FS service to provide Federated Identity and Access Management. AD FS Overview AD FS is an acronym for Active Directory Federation Services. It enables Federated Identity and Access Management by securely sharing digital identity and entitlements rights across…

  • Installing MySQL DB on Debian 11

    Reading Time: 4 minutesInstalling MySQL DB on Debian 11 is an article that shows how to install the DB MySQL on Linux Debian 11 step-by-step. First and foremost, we have written an article explaining how to install the Debian 11 in a lab environment. If you want to check it, please visit the below link:https://dpcvirtualtips.com/installing-linux-debian-11/ Downloading and Installing…

  • Running VMs on RHEL 8

    Reading Time: 6 minutesRunning VMs on RHEL 8 shows all the necessary steps to configure our Red Hat Enterprise Linux to be a hypervisor, providing the capacity to create and run virtual machines (VMs). We’ve written some interesting articles that may help you before following them: How to install RHEL 8 on Lab – https://dpcvirtualtips.com/how-to-install-rhel-8-on-lab/Configuring Bonding + Bridge…

  • What are Module Streams on RHEL?

    Reading Time: 4 minutesModule Streams are part of the Application Streams feature in RHEL. They allow multiple versions of software to be available and managed independently. Key Concepts: This system lets you install and manage different versions of software without conflicts. 1- List all available modules: 2- Filtering by a specific module: or As we can see, the…