This article shows you step-by-step how to install Python on Mac.
- Install Homebrew on your Mac if you haven’t. Homebrew is the most popular package manager for Mac OS that makes installation of software such as Python fast and easy.
- Once you have Homebrew installed, install Python with the following command:
brew install python3
- Let's check if Python3 is running ok. In the Terminal window, type:
python3
If you see the screen below, it means Python 3 is running ok on your machine.
Add comment