What You Will Learn

This is probably the easiest way to install python in your Mac computer. To install python, do the following steps:

  1. Visit the downloads page of Python.
  2. Download the latest (or your desired) version of Python.
  3. Open the downloaded .exe file and a dialog box will appear like below.

Install Window

  1. Tick the Add python.exe to PATH, and then click the Install Now option.
  2. A dialog prompt will appear, then click Yes to proceed with the installation progress.

Installation Progress

  1. After few seconds, you will be notified if the setup is successful. Click the close button to close the dialog.

Installation Progress

There are various ways to verify if Python was successfully installed in your Windows machine.

Open Windows control panel, Python should be listed as installed software.

Control Panel

You can also execute the command to check the version of Python installed in your machine using PowerShell or Command Prompt.

$ python --version
# prints the following
Python 3.10.0

Congratulations! You have successfully installed Python in your machine. Happy coding!!!