How to See the Python Version on Mac, Windows, and Linux

Download Article
Find out which version of Python you have on any computer
Download Article

Do you need to find out which version of the Python interpreter is installed on your PC or Mac? Whether you're using Windows, macOS, or Linux, you can easily check your version of Python using the command python --version in PowerShell or Terminal. If you have both Python 2 and Python 3 installed, you can check their versions using the commands python3 --version and python2 --version. This How.com.vn article will show you easy ways to see which version of Python is installed on Windows, Mac, and Linux. We'll also show you what to do if Python is not found, and give you tips on managing multiple Python versions.

Things You Should Know

  • Multiple versions of Python (e.g., Python 2 and Python 3) can be installed on the same system.
  • Use "python --version" to check the system version of Python.
  • Use "python3 --version" to check the version of Python 3, and python2 --version to check the version of Python 2 individually.
Section 1 of 4:

Checking on a Mac

Download Article
  1. How.com.vn English: Step 1 Open a Terminal window.
    To do so, just open the Launchpad, type terminal, and click Terminal in the search results.[1]
  2. How.com.vn English: Step 2 Type python --version and press ⏎ Return.
    This displays the version of Python installed on your computer.
    • If you have Python 3 in addition to Python 2.7 (the version that used to come preinstalled on macOS), you can check the Python versions separately:
      • Check the Python 2 version: python2 --version[2]
      • Check the Python 3 version: python3 --version
    • You can also use the whereis python command to see where Python is installed.
    Advertisement
  3. How.com.vn English: Step 3 If Python is not found, add the path.
    If you've installed Python but see "command not found" or similar when trying to check the version, you'll just need to add the Python path variable.
    • Type sudo nano /etc/paths and press Return.
    • On the last line of the file, add the full path to Python. This is usually /Library/Frameworks/Python.framework.[3]
    • Save the file by pressing Ctrl + O and then Ctrl + X.
    • Close the Terminal and open a new one. Now, when you type python --version, you'll see the Python version.
  4. How.com.vn English: Step 4 Change the default python to Python 3 (optional).
    If you have multiple Python versions installed and want to change the system version to Python 3, it's easy. You'll just need to edit your .zshrc or .bashrc file to create an alias. Here's how:
    • In a Terminal, type nano ~/.zshrc and press Return. If the file does not already exist, use nano ~/.bashrc instead.
    • Paste this line at the bottom of the file: alias python=/usr/local/bin/python3.
    • Save the file by pressing Ctrl + O and then Ctrl + X.
    • Close the Terminal and open a new one. Now, when you type python --version, you'll see the Python 3 version.
    EXPERT TIP
    How.com.vn English: Kevin Burnett

    Kevin Burnett

    Software Developer
    Kevin Burnett is a Software Developer with over 20 years of professional experience. He spent the majority of his career at Rosetta Stone, a language-learning software company. He has experience with both front and back-end development and works primarily in Ruby, Python, and JavaScript.
    How.com.vn English: Kevin Burnett
    Kevin Burnett
    Software Developer

    Commands check versions. Don't overcomplicate checking your Python version — just run "python --version" in terminal! This quick command invokes interpreter flags to instantly output the current installed production release.

  5. Advertisement
Section 2 of 4:

Checking on Windows

Download Article
  1. How.com.vn English: Step 1 Open PowerShell....
    Open PowerShell. You can do this quickly by pressing Windows key + S, typing powershell, and clicking Windows PowerShell.
    • You can also right-click the Start menu and select PowerShell or Terminal (if either are present). This command to check your Python version will work the same no matter which option you choose.[4]
  2. How.com.vn English: Step 2 Type python --version and press ↵ Enter.
    If Python is installed, this command will display the version number of your primary version of Python.
    • If you have multiple versions of Python installed, you can check each version individually.
      • Check the Python 2 version: python2 --version
      • Check the Python 3 version: python3 --version
      • You can also use the command get-command python* to see all installed versions of Python and their paths.
  3. How.com.vn English: Step 3 If Python is...
    If Python is not found, add the path to your environment variables. If you're sure you've installed Python but see a "Python not found" when checking the version, there's an easy fix:
    • In File Explorer, find the folder in which Python is installed. It's usually something like C:\Users\yourname\AppData\Local\Programs\Python\Python311.
    • In the Windows Search bar, type sysdm.cpl and press Enter.
    • Click Environment Variables…
    • Under "User Variables," select the Path variable and click Edit.
    • If the path to Python does not appear, click New, paste the full path (e.g., C:\Users\yourname\AppData\Local\Programs\Python\Python311, and press Enter.
    • Click New again, and paste the path to the scripts directory. It's the same path, but with \Scripts at the end, e.g., C:\Users\yourname\AppData\Local\Programs\Python\Python311\Scripts.
    • Click OK until you've exited out of the app.
    • Close your PowerShell window and open a new one. You should now be able to check the version with python --version.
  4. How.com.vn English: Step 4 Use multiple versions of Python at once (optional).
    If you had Python 2 installed before installing Python 3, python.exe will always start Python 2 instead of Python 3. Just use python3 when you want to use Python 3, and python when you want to use Python 2.[5]
    • Alternatively, you can rename the python.exe file in your Python 2 directory to python2.exe, and just use python2 when you want to use the Python 2 interpreter. When you installed Python 3, the installer also created a file called python.exe in your Python 3 install directory. This means that once you rename the Python 2 version of python.exe, typing python should automatically launch Python 3 as long as your Python 3 installation path is correct.
      • Double-check your Python 3 installation path to make sure you have a file called python.exe there. If not, copy python3.exe and rename the copy python.exe for the same effect.
  5. Advertisement
Section 3 of 4:

Checking on Linux

Download Article
  1. How.com.vn English: Step 1 Open a Terminal window.
    If you're using Linux, you can usually open a Terminal by pressing Ctrl + Alt + T at the same time.
  2. How.com.vn English: Step 2 Type python --version and press ⏎ Return.
    This displays the system version of Python installed on your computer.
    • If you have Python 3 in addition to Python 2.7 (the version that used to come preinstalled on macOS), you can check the Python versions separately:
      • Check the Python 2 version: python2 --version[6]
      • Check the Python 3 version: python3 --version
    • You can also use the whereis python command to see where Python is installed. If you want to check the installation directory of Python 3 specifically, use whereis python3 instead.
  3. How.com.vn English: Step 3 If Python is not found, add the path.
    If you've installed Python but see "command not found" or similar when trying to check the version, you'll just need to add the Python path variable.
      • Type nano ~/.profile and press Enter.
      • Add the path to the version of Python you've installed to the last line of the file like this: PYTHONPATH=/usr/bin/python.
    • Save the file by pressing Ctrl + O and then Ctrl + X.
    • Close your Terminal, then open a new one. Type python --version to see the Python version.
  4. How.com.vn English: Step 4 Change the default python to Python 3 (optional).
    If you want to use Python 2 and Python 3 at the same time and want to make the python command launch python3, you have a few options:
    • On Ubuntu and Linux Mint, install python-is-python3 using the command sudo apt install python-is-python3.[7] This ensures that running the python command always uses the Python 3 interpreter instead of other installed versions.
    • On other versions (or if you don't want to install a package), just create a symbolic link that makes the python command start python3 instead:
      • Use ls -l /usr/bin/python* to see all symbolic links for python. If /usr/bin/python is linking to anything other than your preferred version, you can change the link.
      • To change the link, use the command sudo ln -fs /usr/bin/python<Version> /usr/bin/python. Replace <version> with the name of the Python binary you want to link to (e.g., sudo ln -fs /usr/bin/python3 /usr/bin/python. In this example, you'd now be able to type python --version and see the Python 3 version number.
  5. Advertisement
Section 4 of 4:

Installing Python

Download Article
  1. How.com.vn English: Step 1 Windows.
    If you see "Python was not found" when checking the version, see our Python installation guide for Windows, or install using one of these two simple options:
    • Download the latest version of Python from https://www.python.org/downloads. Once downloaded, double-click the installer, and follow the on-screen instructions to install. When installing, make sure to choose the option to add Python to your path.
    • You can also install Python from the Microsoft Store. Just open the Microsoft Store app on your Windows 10 or 11 PC and search for python. Click the latest version of Python (e.g., Python 3.11), click Get, and follow the on-screen instructions.
  2. How.com.vn English: Step 2 Mac.
    If Python isn't installed on your Mac, there are two easy ways to install it:
    • You can download the latest Python installer from https://www.python.org/downloads. Once downloaded, double-click the .pkg file and follow the on-screen instructions.
    • Alternatively, you can use Homebrew:
      • In a Terminal window, type xcode-select --install and press Return. This installs Xcode, Apple's developer tools.[8]
      • Type or paste this command to install Homebrew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)". Once you press Return, Homebrew will install.
      • Type brew install python3 and press Return to install Python3.
  3. How.com.vn English: Step 3 Linux.
    The best way to install Python on Linux is to use your distribution's repositories. First, you'll want to find out which version of Python you need:
    • Using Apt on Ubuntu and Linux Mint:
      • Type sudo apt update and press Enter.
      • Type sudo apt install python3 and press Enter.
    • Arch Linux:
      • Type packman -S python and press Enter.
    • Fedora, Red Hat, & CentOS:
      • Type sudo yum -y update and press Enter.
      • Type sudo dnf install python3 and press Enter.
  4. Advertisement

Community Q&A

Search
Add New Question
  • Question
    I downloaded Python 3.7 but when I check it says that the version is 2.7. What should I do ? (I tried reinstalling it.)
    How.com.vn English: faith daniel
    faith daniel
    Community Answer
    To prevent further hassle, just download the 3.x version or the latest version from the Python website (python.org).
  • Question
    Python -V doesn't work. There's an error message: "command not found."
    How.com.vn English: Community Answer
    Community Answer
    First check if Python is installed. On Windows, check if it was added to PATH. On other OS's, try python 2 or Python 3.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      Expert Interview

      Thanks for reading our article! If you’d like to learn more about computer programming, check out our in-depth interview with Kevin Burnett.

      About This Article

      How.com.vn English: Kevin Burnett
      Written by:
      Software Developer
      This article was written by Kevin Burnett and by How.com.vn staff writer, Nicole Levine, MFA. Kevin Burnett is a Software Developer with over 20 years of professional experience. He spent the majority of his career at Rosetta Stone, a language-learning software company. He has experience with both front and back-end development and works primarily in Ruby, Python, and JavaScript. This article has been viewed 421,718 times.
      How helpful is this?
      Co-authors: 6
      Updated: February 23, 2024
      Views: 421,718
      Categories: Python
      Article SummaryX

      To check which version of Python is installed on your Windows PC, start by opening the Windows Search and typing “Python” into the search bar. When the list of matching results comes up, click “Python” to open a black terminal window to a Python prompt. In the top-left corner of the window, you’ll see a number right after the word “Python,” which is the version that you’re currently running. To learn how to find the version of Python on your Mac, keep reading!

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 421,718 times.

      Is this article up to date?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement