Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to Install PIL on Windows?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In this article, we will look into the various methods of installing the PIL package on a Windows machine.

Prerequisite:

For PIP Users:

Open up the command prompt and use the below command to install the PIL package:

pip install Pillow

The following message will be displayed once the installation is completed:

installing PIL package using PIP

To verify the installation run the below code in a Python IDE of your choice:

Python3




import PIL
  
IL.__version__

Output:

verifying the installation of PIL

For Conda Users:

Conda users can open up the Anaconda Power Shell and use the below command to install PIL:

conda install -c anaconda Pillow

The following message will be displayed once the installation is completed:

installing PIL package using conda

To verify the installation run the below code in a Python IDE of your choice:

Python3




import PIL
IL.__version__

Output:

verifying the installation of PIL

My Personal Notes arrow_drop_up
Last Updated : 09 Sep, 2021
Like Article
Save Article
Similar Reads
Related Tutorials