#Python #Snippets July 01, 2023

Python: Installation

Windows

  • Go to https://www.python.org/.
  • Hover over the Downloads dropdown. Click on the button to download the latest stable version. Here's the direct link for Python 3.11.4.
  • Launch the installer, and make sure to check the checkbox for "Add Python x.x to PATH".
  • To verify if Python is installed, launch the Command Prompt, and type:
py

The message should be something like this:
Python 3.11.1 (tags/v3.11.1:a7a450f, Dec  6 2022, 19:58:39) [MSC v.1934 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

SEARCH