Python is a widely-used general-purpose, high-level programming language. This article will serve as a complete tutorial on How to download and install Python latest version on macOS / Mac OS X. Like Linux, macOS also comes with Python pre-installed on the system. It might be Python version 2 or some similar outdated version. To update to the latest version, we will use the Homebrew Package manager. It is one of the best and convenient methods to install Python on macOS.
To know more about Homebrew Package manager, visit here.
-
Download and install Homebrew Package Manager
If you don’t have homebrew installed on your system, follow the steps below
Open the Terminal Application of macOS from Application -> Utilities. Bash terminal will open where you can enter commands
Enter following command in macOS terminal
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Enter system password if prompted. This will install the Homebrew package Manager on your OS.
After you see a message called “Installation Successful”. You are ready to install python version 3 on your macOS.
-
Install Python Latest Version on macOS / macOS X
To install python simple open Terminal app from Application -> Utilities
and enter following command
brew install python3
After command processing is complete, Python’s version 3 would be installed on your mac.

To verify the installation enter following commands in your Terminal app
python
pip3

Bingo..!! Python is installed on your computer. You can explore more about python here
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Oct, 2019
Like Article
Save Article