How to Install PIL on MacOS? Last Updated : 26 Oct, 2021 Comments Improve Suggest changes Like Article Like 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 Step 4: To verify the installation run the following command. pip3 show Pillow Output: Pillow installed with version 8.3.2Method 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 Comment More infoAdvertise with us Next Article How to Install PIL on MacOS? A amnindersingh1414 Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads 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 How to Install PyYAML on MacOS? YAML is a data serialization format that allows interaction with scripts. It is often used to create configuration files as it prioritizes human readability over JSON. PyYAML is a tool for parsing and outputting YAML for Python. It has many useful features, such as an API for low-level event-based p 2 min read How to Install SQLplus on MacOS? Oracle database is the most commonly used database in transaction processing, data warehousing, and several other applications. SQLPlus is the basic Oracle Database utility and the main purpose of this module is to interact with the Oracle database and run different types of queries. It is the most 2 min read How to Install py-pmw on MacOS? Pmw is a toolkit and used for creating high-level compound widgets, also known as mega widgets, that are made up of other widgets. It supports a consistent appearance and feels across graphical apps, is highly adaptable to your needs, and is simple to use. It includes some base classes and libraries 2 min read How to Install Scrapy on MacOS? In this article, we will learn how to install Scrapy in Python on MacOS. Scrapy is a fast high-level web crawling and web scraping framework used to crawl websites and extract structured data from their pages. It can be used for a wide range of purposes, from data mining to monitoring and automated 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 Pytorch on MacOS? PyTorch is an open-source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing, primarily developed by Facebook's AI Research lab. It is free and open-source software released under the Modified BSD license. Prerequisites: 2 min read How to install Solidity on macOS? Solidity is a programming language used for writing smart contracts for many platforms of blockchain, the most common of which is ethereum. It is an object-based programming language that runs on EVM (Ethereum Virtual Machine) which executes the smart contracts. Below are the steps to install solidi 2 min read How to Install Rasterio on MacOS? In this article, we will learn how to install Rasterio in Python on MacOS. Rasterio is used to access geospatial raster data. Geographic information systems use GeoTIFF and other formats to organize and store gridded raster datasets such as satellite imagery and terrain models. Rasterio reads and wr 2 min read How to Install LISP on MacOS? Lisp is one of the oldest programming languages. It was invented back in the 1950s by John McCarthy. Lisp is a so-called meta-programming language or a symbolic programming language. It can be used for any sort of task. It's a general-purpose language. It is the second-oldest high-level programming 2 min read Like