Installing Python 3

No Python Installed Error

Welcome soon to be Python user! Python is one of the easiest programming languages to learn and grow with. But there are a few bumps right at the beginning. One of these bumps is to make sure you have Python installed and that it's a sufficiently new version (generally 3.10+ is solid these days).

Because how you install and verify Python varies by operating system, we've put together this short guide. It's goal is to give you exposure to the various ways on your operating system to install and maintain Python in a concise and no-nonsense manner. So with out further ado, let's get you setup!

Step 1. Go To Your Operating System

As mentioned above, how you verify Python and subsequently install it is specific to the operating system. So jump to:


Windows

Step 2. Do you have Python? Let's check

To determine if you have Python installed, open the command prompt or (preferred) install new Windows Terminal from the Microsoft Store.

Verify you have Python, in the command prompt / terminal, type python -V (capital V):

C:\users\username\> python -V

The output should be one of the following (version numbers will vary). C:\users\username> is not typed - Windows displays this as part of the terminal UI.

Success, you have Python

C:\users\username\> python -V
Python 3.12.0

If you see this and the reported version number is sufficiently high (often 3.9 or higher), you are good to go.

2.7? Uh oh, your Python is badly outdated!

C:\users\username\> python -V
Python 2.7.18

If you have Python 2.*, then you are using an outdated version of Python. Since 2020, Python 2 has gone entirely unsupported and should not be used. You will need to continue below to install Python 3.

Ooops, you do NOT have Python

C:\users\username\> python -V
'python' is not recognized as a command or program.

Looks like you do not have Python at all. You will need to continue below to install Python 3. Note that the error message may be slightly different for Windows Terminal: The term python is not recognized as a cmdlet, function, or operable program.

Ooops, you still do NOT have Python

C:\users\username\> python -V
Python was not found; run without arguments to install from the Windows Store...

Looks like you do not have Python at all. You will need to continue below to install Python 3. When you see this specific error message, it means that Python is not installed. What is running is a shim program meant to help you install Python 3 from the Windows Store (one option below). You can select this option by simplifying typing python and following along in the UI.

Step 3. You need Python, install it on Windows

So you need to install a new version of Python on your Windows machine. There are a variety of options for doing so. We'll run you through them, but if you are uncertain which one to get, just use the official installer. Keep in mind that no matter how you install Python, you will likely need to close and reopen your terminal/command prompt for any changes to take effect.

<< Python Official Installer on Windows >>

The Python official installer can be found on python.org.

Pros

Cons

Install steps - Windows official installer:

  1. Visit the downloads page for Windows at python.org
  2. Find the section entitled Stable Releases
  3. Download the MSI installer under the Download Windows installer (64-bit) link
  4. Run the installer - be sure to check the "add python to my path" option
  5. Close all terminal and command prompt windows
  6. Run python -V in a new terminal window to verify you have Python now working

<< Windows Store version of Python >>

The Windows Store version of Python is a good option. It's the easiest way to get Python on Windows without administrator permissions. But there are some drawbacks too.

Pros

Cons

Install steps - Microsoft Store Python:

  1. Open the Microsoft Store on Windows
  2. Search for Python
  3. Find the latest version of Python from Microsoft (currently lists 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12)
  4. Install from the Microsoft Store
  5. Close all terminal and command prompt windows
  6. Run python -V in a new terminal window to verify you have Python now working

<< Chocolatey Package Manager for Windows >>

Chocolatey is a package manager: software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer's operating system in a consistent manner. If you're comfortable using package managers, then this is a good option for you because you can continually update and maintain Python on your system.

Pros

Cons

Install steps - Chocolatey package manager on Windows

  1. Install Chocolatey - steps here
  2. Open an administrator command prompt
  3. Install the latest Python: choco install python
  4. Periodically check for a new release: Open admin command prompt and run choco upgrade python
  5. Close all terminal and command prompt windows and reopen one (to refresh the path)
  6. Run python -V in a new terminal window to verify you have Python now working

<< Anaconda distribution on Windows >>

Anaconda is a distribution of Python that packages many of the common data science packages pre-configured for your system. It is a good option for data scientists.

Pros

Cons

Install steps - Anaconda distribution on Windows

  1. Download the Windows installer
  2. Run the installer, add Python to path if asked
  3. Close all terminal and command prompt windows
  4. Run python -V in a new terminal window to verify you have Python now working


macOS

Step 2. Do you have Python? Let's check

To determine if you have Python installed, open the terminal. Verify you have Python: In the terminal, type python3 -V (capital V):

$ python3 -V

The output should be one of the following (version numbers will vary). Do not type $ - macOS displays this as part of the terminal UI.

Success, you have Python

$ python3 -V
Python 3.12.0

If you see this and the reported version number is sufficiently high (often 3.9 or higher), you are good to go.

2.7? Uh oh, your Python is badly outdated!

If python3 does NOT run successfully, but python (without the 3) itself does and you see the output:

$ python -V
Python 2.7.18

If you have Python 2.*, then you are using an outdated version of Python. Since 2020, Python 2 has gone entirely unsupported and should not be used. You will need to continue below to install Python 3.

Ooops, you do NOT have Python

$ python3 -V
bash: python3: command not found

Looks like you do not have Python 3 at all. You will need to continue below to install Python 3. Note that the error message is slightly different for different shells.

Step 3. You need Python, install it on macOS

<< Homebrew Package Manager for macOS >>

Homebrew is a package manager: software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer's operating system in a consistent manner. If you're comfortable using package managers, then this is a good option for you because you can continually update and maintain Python on your system.

Pros

Cons

Install steps - Homebrew package manager on macOS

  1. Install Homebrew - steps here
  2. Open a terminal
  3. Install the latest Python: brew install python
  4. Periodically check for a new release: Open terminal and run brew update then brew upgrade
  5. CAREFUL: Take careful note of any messages shown - sometimes you must update your path (varies by default shell: bash, zsh, etc.) for this version to be located.
  6. Close all terminal windows
  7. Run python3 -V in a new terminal window to verify you have Python now working

<< Python Official Installer on macOS >>

The Python official installer can be found on python.org.

Pros

Cons

Install steps - macOS official installer:

  1. Visit the downloads page for macOS
  2. Find the section entitled Stable Releases
  3. Download the PKG installer under the Download macOS 64-bit universal2 installer link
  4. Run the installer
  5. Close all terminal and command prompt windows
  6. Run python3 -V in a new terminal window to verify you have Python now working

<< Anaconda distribution on macOS >>

Anaconda is a distribution of Python that packages many of the common data science packages pre-configured for your system. It is a good option for data scientists.

Pros

Cons

Install steps - Anaconda distribution on Windows

  1. Download the macOS installer
  2. Run the installer, add Python to path if asked
  3. Close all terminal and command prompt windows
  4. Run python3 -V in a new terminal window to verify you have Python now working


Linux

Step 2. Do you have Python? Let's check

To determine if you have Python installed, open the terminal. Verify you have Python, in the terminal, type python3 -V (capital V):

$ python3 -V

The output should be one of the following (version numbers will vary). Don't type $ - Linux displays this as part of the terminal UI.

Success, you have Python

$ python3 -V
Python 3.12.0

If you see this and the reported version number is sufficiently high (often 3.10 or higher), you are good to go.

2.7? Uh oh, your Python is badly outdated!

If python3 does NOT run successfully, but python (without the 3) itself does and you see the output:

$ python -V
Python 2.7.18

If you have Python 2.*, then you are using an outdated version of Python. Since 2020, Python 2 has gone entirely unsupported and should not be used. You will need to continue below to install Python 3.

Ooops, you do NOT have Python

$ python3 -V
bash: python3: command not found

Looks like you do not have Python 3 at all. You will need to continue below to install Python 3. Note that the error message is slightly different for different shells.

Step 3. You need Python, install it on Linux

Note that these instructions are for Ubuntu. With the many variants of Linux, you many need to adjust slightly (e.g. yum vs. apt)

<< Built-in Package Manager for Ubuntu >>

Ubuntu manages it's installed software using apt. This is a good way to install and manage Python 3 on your system.

Pros

Cons

Install steps - apt package manager on Ubuntu

  1. Open a terminal
  2. Update the package sources: sudo apt update
  3. Upgrade currently installed software: sudo apt upgrade
  4. Install the latest Python 3: sudo apt install build-essential libssl-dev libffi-dev python3-dev
  5. Make sure we have pip as part of our Python: sudo apt install python3-pip
  6. Close all terminal windows
  7. Run python3 -V in a new terminal window to verify you have Python now working

<< Anaconda distribution on Ubuntu >>

Anaconda is a distribution of Python that packages many of the common data science packages pre-configured for your system. It is a good option for data scientists.

Pros

Cons

Install steps - Anaconda distribution on Ubuntu

  1. Download the Linux installer
  2. Run the installer, add Python to path if asked
  3. Close all terminal and command prompt windows
  4. Run python3 -V in a new terminal window to verify you have Python now working

<< Building python from source on Ubuntu >>

While we would not generally recommend building Python 3 from source, if you need the very latest on your system, often this is one of the few options available.

Pros

Cons

Install steps - Building python from source on Ubuntu

  1. Open a terminal
  2. Ensure your package listings and software are up-to-date: sudo apt-get update
  3. Install the build tools: sudo apt-get install -y build-essential checkinstall
  4. Add additional libraries needed by Python to build: apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libffi-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
  5. Change into the src directory: cd /usr/src
  6. Get the latest source from python.org/downloads/source and wget it locally, e.g.: sudo wget https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tgz
  7. Decompress it (varies by version): sudo tar xzf Python-3.12.0.tgz
  8. Change into the created directory (varies by version): cd Python-3.12.0
  9. Prepare it for compilation: sudo ./configure --enable-optimizations
  10. Compile it without modifying system Python: sudo make altinstall
  11. Verify this version was built (varies by version): python3.12 --version
  12. Use python3.12 instead of python or python3 commands
  13. Consider creating an alias of python3.12 to python in your shell profile.

There is a nice write up of this procedure over here.


Corrections and improvements

If you find a problem or have a suggestion to make this page better, please visit the GitHub repository here. Note that this is not intended for tech support but rather for genuine, broadly applicable improvements to the instructions:

https://github.com/talkpython/installing-python

Talk Python's Mastodon Michael Kennedy's Mastodon