Subscribe

Setting up Python on macOS

✍️

A basic setup for Python on the macOS system

16 May, 2021 · 2 min read

I finally needed some Python to do some OpenCV work on my Mac. And although Mac nowadays comes with Python pre-installed, it’s not the exact version we are looking for.

Open a terminal and run the python command to demonstrate that. This should now return version 2.

Mac default Python installation

So how can we ensure we have the latest Python version available on our Mac system?

Mac installing Python 3

The easiest way to install Python 3 is to use Homebrew. If you haven’t had Homebrew installed yet, check out this article explaining how to set up Homebrew on your Mac.

With Homebrew installed, we can install Python, which will install the latest stable (at the time of writing 3.9).

brew install python

And once that is done, we should run the python3 command to see if our version matches.

Mac Python 3 installed

However, it’s a bit of a mission to type the number three after Python manually.

To fix that, we can add a new alias to link python3 to the command python.

I’m using Zsh, so I have a ~/.zshrc file, open this file and add the following line.

nano ~/.zshrc
alias python="python3"

If you restart your terminal, you should run just the python command.

Python default command version 3

And that’s it. We now have the latest version of Python installed on our MacOs system.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Speedtest your connection in Python

21 Jun, 2021 · 2 min read

Speedtest your connection in Python

F-strings in Python

7 Jun, 2021 · 2 min read

F-strings in Python

Join 2099 devs and subscribe to my newsletter