I am looking to do some coding on my laptop, practicing and trying to teach my self new things that I can add when I came across adding pictures. This requires Pillow, but I have no idea on where to start to download it. Please can someone help by telling me how to download and install Pillow on Windows?
Asked
Active
Viewed 3,076 times
1
-
1Use `pip` to install it. Run the following against your command line: `python3 -m pip install Pillow` – Alan Kavanagh Dec 29 '17 at 21:24
-
2Possible duplicate of [Installing Pillow for Python on Windows](https://stackoverflow.com/questions/20596204/installing-pillow-for-python-on-windows) – Alan Kavanagh Dec 29 '17 at 21:26
1 Answers
1
Now for python version 3.X you need to specify
> pip3 install pillow
pil is now pillow

Sandip
- 3,501
- 3
- 19
- 23