1

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?

Alan Kavanagh
  • 9,425
  • 7
  • 41
  • 65
FiniteWhisper
  • 11
  • 1
  • 2
  • 1
    Use `pip` to install it. Run the following against your command line: `python3 -m pip install Pillow` – Alan Kavanagh Dec 29 '17 at 21:24
  • 2
    Possible 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 Answers1

1

Now for python version 3.X you need to specify

> pip3 install pillow

pil is now pillow

Sandip
  • 3,501
  • 3
  • 19
  • 23