Support Our Site

To ensure we can continue delivering content and maintaining a free platform for all users, we kindly request that you disable your adblocker. Your contribution greatly supports our site's growth and development.

How To Install Python 3 on Mac OS

4 min read

Python is a versatile language used for multi-purpose programming it is undoubtedly the most popular dynamic programming language that is being used today.

Python is an open source object-oriented programming language made by Dutchman Guido van rossum in 1991.

Python is an excellent choice for beginners and experienced developers, Python 3 is the most current version of the language and is considered to be the future of Python.

Python 2.X comes preinstalled on Mac.

You can verify it by running python --version in your terminal; you should get a similar output

$ python --version
Python 2.7.15

But if you check for Python 3 by running  python3 --version you will get an error unless you already have Python 3 installed.

If you are wondering why you should install Python 3 read The key difference between Python 2 and Python 3

There are various ways to install Python 3, including a download from the official Python site. However, I strongly recommend instead use a package manager like Homebrew to manage all your packages. It will save you from a lot of headaches.

This tutorial will guide you through installing Python 3 on your local macOS machine and setting up a programming environment via the command line.

How to install Python 3 in Mac

Before preceding a quick Note - We’ll be completing most of our installation and set up on the command
line, which is a non-graphical way to interact with your computer.

Step - 1

Open your terminal,  you can find it by going into Finder, navigating to the Applications folder, and then into the Utilities folder. Alternatively, you can use Spotlight by holding down the command and spacebar keys to find Terminal by typing it out in the box.

Step - 2

Xcode is an integrated development environment (IDE) that is comprised of software development tools for macOS. You may have Xcode installed already on your system. To check, in your Terminal window, execute this command - xcode-select -p

If you receive the following output, then Xcode is installed:

/Library/Developer/CommandLineTools

If you get an error then you need to install Xcode first, you can simply install it from the App store  Install Xcode

Once Xcode is installed, return to your Terminal window. Next, you’ll need to install Xcode’s separate Command Line Tools app, which you can do by executing the following command.

$ xcode-select --install

Click through all the confirmation commands this may take a while.

Once Xcode and its Command Line Tools app are fully installed, and we are ready to install the package manager Homebrew.

Step -3

In this step, we will install Homebrew which is a package manager. A package manager is a collection of software tools that work to automate installation processes that include initial software installation, upgrading and configuring of software, and removing software as needed.

To install Homebrew run the following command in your terminal -

 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Homebrew installs packages to their own directory and then symlinks their files into /usr/local.

To confirm the Homebrew installation run this command

$ brew doctor
Your system is ready to brew.

Otherwise, you may get a warning to run another command such as brew update to ensure that your installation of Homebrew is up to date.

Once Homebrew is ready, you can proceed further to install Python 3.

Step - 4

Finally, now you can install the latest version of Python by running

$ brew install python3

The Terminal window will give you feedback regarding the installation process of Python 3. Along with Python 3, Homebrew will install some essential tools such as pip, setuptools, and wheel.

Pip is a valuable tool used to install and manage Python packages. You will use it a lot in your projects.

To verify Python 3 installation, you can run the following

$ python3 --versionPython 3.7.5

Your version might slightly vary, but as long as it's Python 3 the installation was successful.

To open a Python 3 shell from the command line type python3:

$ python3Python 3.7.4
Type "help", "copyright", "credits" or "license" for more information.>>>

To exit the shell simple type exit() and hit enter.

Note you can still run Python shells with Python 2 by executing python:

$ python
Python 2.7.15Type "help", "copyright", "credits" or "license" for more information.>>>

As the installation is complete go ahead and run your first Python program by following this guide - How to run "Hello, World!" program in Python 3

How to update Python3?

If in future Python team publishes a new update you can update your Python 3 from the terminal by doing the following.

brew update
brew upgrade python3

This will update your Homebrew first followed by Python 3.

How to Create a Virtual Environment in Mac os?

If you have been Following this guide, Now you have Python 2 and Python 3 installed in your Mac.

Unfortunately, there is a lot of contrast between these two versions, Python 3 was introduced to eliminate all the design flaws of the previous version. It brought a lot of changes you can read about them here

So the problem is almost every time, Programs written of Python 2 won't work on Python 3 environment. And Python 2 package Might create a conflict in Python 3 program.

To prevent such situations, it is always recommended to create virtual environments to run Python 2.7 for one project and Python 3.7 for another on the same computer, follow this guide to learn how to create Virtual environments on Mac.


PYTHON

Latest Articles

Latest from djangocentral

How to Use Subquery() in Django With Practical Examples

In the realm of web development, Django stands as a powerful and versatile framework for building robust applications. One of the key aspects of developing efficient and optimized web applications is handling database queries effectively. In this article…
Read more →

4 min read

DRF Serializer: Handling OrderedDict and Converting It to a Dictionary or JSON

In Django Rest Framework (DRF) tests, when you access serializer.data, you might encounter an OrderedDict instead of a regular dictionary. This behavior is intentional and reflects the design of DRF's serialization process.Understanding the Problem The u…
Read more →

3 min read

Django Rest Framework CheetSheet: Mastering API Development

Django Rest Framework (DRF) is a powerful toolkit that makes building robust and scalable web APIs with Django a breeze. Whether you're a seasoned Django developer or a newcomer, having a comprehensive cheat sheet at your disposal can be a game-changer. …
Read more →

5 min read

How to Perform NOT Queries in Django ORM

In Django, performing NOT queries allows you to exclude certain records from the query results based on specific conditions. The NOT operator, represented by the tilde (~) when used in conjunction with the Django ORM's Q object, helps you construct compl…
Read more →

3 min read