How to Install Matplotlib on MacOS?
Last Updated :
30 Sep, 2021
In this article, we will learn how to install Matplotlib in Python on MacOS. Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.
Installation:
Method 1: Using pip to install Matplotlib Package
Follow the below steps to install the Matplotlib package on macOS using pip:
Step 1: Install the latest Python3 in MacOS
Step 2: Check if pip3 and python3 are correctly installed.
python3 --version
pip3 --version
Step 3: Upgrade your pip to avoid errors during installation.
pip3 install --upgrade pip
Step 4: Enter the following command to install Matplotlib using pip3.
pip3 install matplotlib

Method 2: Using setup.py to install Matplotlib
Follow the below steps to install the Matplotlib package on macOS using the setup.py file:
Step 1: Download the latest source package of Matplotlib for python3 from here.
curl https://files.pythonhosted.org/packages/21/37/197e68df384ff694f78d687a49ad39f96c67b8d75718bc61503e1676b617/matplotlib-3.4.3.tar.gz > matplotlib.tar.gz
Step 2: Extract the downloaded package using the following command.
tar -xzvf matplotlib.tar.gz
Step 3: Go inside the folder and Enter the following command to install the package.
Note: You must have developer tools for XCode MacOS installed in your system
cd matplotlib-3.4.3
python3 setup.py install

Verifying Matplotlib installation on macOS:
Make the following import in your python terminal to verify if the installation has been done properly:
import matplotlib
If there is any error while importing the module then is not installed properly.
Similar Reads
How to Install Matplotlib on Linux? Matplotlib is a low-level library of Python which is used for data visualization. It is easy to use and emulates MATLAB like graphs and visualization. This library is built on the top of NumPy arrays and consist of several plots like line chart, bar chart, histogram, etc. It provides a lot of flexib
2 min read
How to Install NuPIC on MacOS? NuPIC stands for Numenta Platform for Intelligent Computing is a platform that implements the HTM (Hypertext Markup Language) learning algorithm. HTM is a detailed computational theory of the neocortex. At the core of HTM are timeframe continuous learning algorithms.NuPIC is used for a variety of pr
1 min read
How to Install Matplotlib on python? Matplotlib is an amazing visualization library in Python for 2D plots of arrays. Matplotlib is a multi-platform data visualization library built on NumPy arrays and designed to work with the broader SciPy stack. In this article, we will look into the various process of installing Matplotlib on Windo
2 min read
How to Install Matplotlib on Anaconda? Matplotlib is a Python library for data visualization that allows users to create static, interactive, and animated plots. If you're using Anaconda, a leading platform for Python data science, installing Matplotlib is straightforward. This guide provides you with detailed instructions to install Mat
2 min read
How to Install Py-moviepy on MacOS? MoviePy is a Python library. this library is used for video editing, including cutting, concatenation, title insertions, video compositing, video processing, custom effect generation, etc. It supports all of the most common audio and video formats, including GIF. It operates on operations systems li
2 min read
How to Install Pillow on MacOS? In this article, we will learn how to install Pillow in Python on MacOS. Python Imaging Library (expansion of PIL) is the de facto image processing package for Python language. Installation:Method 1: Using pip to install Pillow Follow the below steps to install the Pillow package on macOS using pip:
2 min read