Installation
In this section, we will guide you through the installation process of Python.
Danger
Before you skip the content and proceed with the installation, we encourage you to read our instructions. Following them, will save you some time and potential headaches with the setup process!
Following video walks you through the installation steps for Windows.
Info
If you prefer a written guide follow the next couple of sections.
Step 1: Download
We recommend installing Python 3.14!
- Visit the official website python.org
- Navigate to Downloads
- A section "Download for Windows" will automatically appear
- Click the button Python install manager
- Locate the downloaded
.msixfile in your Downloads folder
Step 2: Run installer
-
Double-click the
.msixfile to launch the install manager. -
Click "Install Python" to begin the installation
-
A new Terminal window will open
-
Optional: If prompted with "Open Settings to modify App execution aliases":
- Type
yand press Enter - In the Settings app, search for
alias - Navigate to App execution aliases
- Toggle the Python aliases on
Info
The app alias configuration is an optional step that may appear during installation. It might not be necessary on your machine. Properly configured aliases allow you to execute Python commands from the terminal.
- Type
-
When prompted
Install CPython now? [Y/n]:- Press Enter to accept the default option (Yes)
-
When prompted
View online help? [y/N]:- Press Enter to skip this step
- The terminal will close automatically
Step 3: Verify Installation
-
Open a new terminal window (use Windows search with the keyword
terminal)Info
If you are using Windows 10, search for Command Prompt (
cmd) instead of Terminal. All consecutive steps stay the same. -
Check your installation by running:
-
You should see output similar to:
where
xrepresents the specific patch version (e.g.,3.14.3or3.14.4).
Info
Unfortunately, we do not have a installation video for macOS (yet). If you're having any trouble, reach out to us!
Step 1: Download
We recommend installing Python 3.14.
- Visit the official website python.org
- Navigate to the Downloads tab
- A section "Download for macOS" will automatically appear
- Click the Python 3.14.x button to download
- Locate the downloaded
.pkgfile in your Downloads folder
Step 2: Run installer
- Double-click the
.pkgfile to launch the installer - Follow the installation wizard:
- Click Continue through the introduction screens
- Accept the license agreement
- Click Install and enter your password if prompted
- Wait for the installation to complete
Danger
Important: After installation completes, Finder will automatically open, showing the Python installation folder. You must complete this final step:
- Double-click the
Install Certificates.commandfile - A Terminal window will open and execute the certificate installation
- Wait for it to complete and close automatically
This step is required for Python to make secure HTTPS connections.
Step 3: Verify Installation
-
After the successful installation, open a terminal (use the spotlight search with the keyword
terminal) -
Verify the installation by typing:
-
You should see output similar to:
where
xrepresents the specific patch version (e.g.,3.14.3or3.14.4).
Done!
If everything went smoothly, you have successfully installed
Python!
With Python installed, the next step is to set up a code editor. In the following section, we will install Visual Studio Code (VS Code).