Open In App

How to Install PIL on MacOS?

Last Updated : 26 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

PIL is an acronym for the python image library. It is a library that is used to manipulate images, using PIL library with python we can perform various operations on images. In this article, we are going to learn how we can install PIL on MacOS.

Method 1: Using PIP to install PIL (Pillow).

Python comes preinstalled in MacOs, and if you have not installed the pip, follow the following steps to install pip on your macOS.

Step 1: Download the get_pip python file to install pip.

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Note: curl is a command-line utility that we have used to download the get-pip.py file.

Step 2: Execute the downloaded python file to install pip:

python3 get-pip.py 

This will install the pip3 onto your system.

Step 3: Now simply run the following command to install pip(pillow) onto your MacOs:

python3 -m pip install --upgrade Pillow

Output:

Pillow installed

Pillow installed

Step 4: To verify the installation run the following command.

pip3 show Pillow

Output:

Pillow installed with version 8.3.2

Pillow installed with version 8.3.2

Method 2: Using the Brew command

Simply run the following command in the terminal and it will install the PIL (pillow) onto your MacOS.

brew install pillow

Output:

Pillow installed using Brew

Pillow installed using Brew


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads