We kick off this Python tutorial by learning to install Python on MacOS, Windows, and Linux. We will look at multiple installation methods per platform and discuss what I think is the best option.
Most of the time, using the official installer from the python.org website is not advisable. Instead, itβs better to go for the version packaged by your operating system. The advantage of an OS-supplied version is that youβll get automatic updates.
Table of Contents
Install Python on Windows
There are three methods you can choose from on Windows.
With the official installer
You can download a Python installer from the official Python download website. I recommend this installation method if you are not an advanced computer user. Although this method does not give you automatic updates in the future, it does a great job of installing Python properly. Since itβs the official Python distribution, itβs well-tested, and it will be easier to ask for help if needed.
When you use this installer, mark the checkboxes that say βAdd Python to PATHβ and βInstall launcherβ as seen below:

In the following video, taken from my Python course for beginners, I demonstrate this installation process in detail:
Using The Microsoft Store
Microsoft hosts a community release of Python 3 in the Microsoft Store. This is also a great way to install Python on Windows because it handles updates automatically.
To use this method:
- Open the Microsoft Store and search for Python
- Pick the newest version and install it
Inside WSL
If youβre familiar with Windows Subsystem For Linux, you may also want to consider that option. Itβs what I use myself, and I truly love it. It offers me the advantages that Windows offers (mainly great hardware support) while still enjoying Linux, which is, in my opinion, the best platform for Python development.
To install in WSL, youβll first need to install WSL itself. Go for WSL2 if you can. Itβs much better. After that, follow the Linux installation instructions below!
Installation on MacOS
On most versions of MacOS before Catalina, a distribution of Python is already included. Unfortunately, itβs almost certainly an old version, Python 2.7. Luckily, there are two ways to easily install Python 3 on a Mac.
Homebrew
First and foremost, I recommend looking into Homebrew. It allows you to install almost anything easily. The added benefits:
- Homebrew packages are usually very up-to-date.
- Itβs also easy to upgrade to newer versions later on.
However, you must be comfortable using a command-line shell to use Homebrew. If thatβs entirely new for you, I recommend the following option for now: using the official installer.
If you choose to install Homebrew, installing Python on MacOS is as easy as:
$ brew install python
Code language: Bash (bash)
Official installer
Alternatively, you can download an installer from the Python download website. Itβs easy and works like the installation of any other MacOS software program. The downside to this approach is that you wonβt get automatic updates. Just like with Windows, you should ensure that Python is added to your systemβs PATH.
Install Python on Linux
There are several ways to install Python on Linux, that is if you need to install it at all!
Check whatβs installed first
Most Linux distributions include Python. Many will include both Python 2 and Python 3.
If you enter python --version
on the command line, youβll see the version number. Itβs probably version 2.7:
$ python --version
Python 2.7.16
Code language: Bash (bash)
Unfortunately, you donβt want Python 2, but some OSβes still ship with it.
Now try python3 --version
. If you get a βcommand not found,β you must install Python 3. If your output looks similar to this, youβre in luck:
$ python3 --version
Python 3.8.5
Code language: Bash (bash)
Using a package manager
Depending on the distribution of Linux you are running, you can install Python with the default package manager: Yum, APT, etcetera. Youβll need to determine which package manager is used for your specific Linux distribution and how to use it.
If youβre on Ubuntu, Linux Mint, or Debian, you can install it using apt:
$ apt install python3 python-is-python3
Code language: Bash (bash)
This also installs a package called python-is-python3
, which makes the command python
point to python3
. Trust me when I say it will save you a lot of headaches later on.
Homebrew
Another interesting option for Linux is using Homebrew. Thatβs right, the package manager for Macs also works on Linux.
The major advantages of using Homebrew:
- Youβll get the latest version of Python, instead of the version your OS shipped with
- You donβt need root access to your system. All the software installed with Homebrew is installed in your home directory
I find myself using Homebrew more and more while working under Linux β give it a try!
Python in your browser
If you donβt feel like installing Python, or you cannot install it for whatever reason, Iβll offer an alternative, too: you can use Python right from your browser; no installation necessary!
Learn more
This article is part of a free Python tutorial. You can browse the tutorial with the navigation buttons at the top and bottom of the article or use the navigation menu. Want to learn more? All the Python installation methods also install a tool called pip. Pip is used to install Python packages that donβt come with the default Python installation. Later in this course, weβll look extensively at how to use Pip and some alternatives that have even more to offer, like Python Poetry and Pipenv.