Install Python on Windows

Python is a versatile programming language widely used in data analysis, web development, and more. This guide explains how to install the latest version of Python on Windows.

Step 1: Download Python

  1. Download the Python installer for Windows directly: Python 3.13.1
  2. If it does not work, visit https://www.python.org, click on Downloads, and select the version for your operating system.

Step 2: Run the Installer

  1. Locate the downloaded file in your Downloads folder.
  2. Double-click to run the installer.
  3. Click Install Now for default settings or choose Customize Installation for advanced options.

Step 3: Verify Installation

  1. After completion, open Command Prompt:
    • Press Win + R, type cmd, and press Enter.
    • Alternatively, press the Windows key on your keyboard, type cmd, and hit Enter.
  2. Check the Python version:
python --version
  1. Check the pip version:
pip --version

Step 4: Test Python

Open Python in Command Prompt:

python

Run a test command:

print("Hello, World!")

Output:

Hello, World!

Exit Python:

exit()

Here are my screenshots. Don’t worry about the terminal color; you can customize it as well.

Conclusion

You’ve successfully installed Python on Windows. Stay tuned for the next blog!




Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • Install Jupyter on Windows