Dave Oink
Dave Oink

Reputation: 69

How to install Pillow on Python 3.5?

As the title suggested I have trouble installing Pillow on Python 3.5.2. I believe I already have pip and easyinstall preinstalled. I have viewed some tutorials and attempted to type '>$pip install Pillow' into the IDLE shell but it came back with a syntax error. I am new to programming and have no prior IT exprience so please be specific and put it in simple terms. My OS is Windows 10. Thanks.

Upvotes: 3

Views: 10836

Answers (5)

OpenSaned
OpenSaned

Reputation: 85

try typing pip in the command line maybe you didn't install pip properly if you didn't then go to here to install pip

Upvotes: 0

Liyakat Shaikh
Liyakat Shaikh

Reputation: 115

sudo pip3 install Pillow==5.0.0

This will saves you

Upvotes: 2

cpu stat
cpu stat

Reputation: 23

Use pip install Pillow. It worked for me

Upvotes: 0

Roland Smith
Roland Smith

Reputation: 43495

Installing stuff on ms-windows is such a can of worms that it is probably easiest to use a specialized Python distribution for ms-windows, like Anaconda or Enghought. These come with a lot of packages pre-installed, and have their own package managers to make adding more stuff easier for you.

Upvotes: 1

Vadim  Kovrizhkin
Vadim Kovrizhkin

Reputation: 1781

sudo pip3 install Pillow - unix-style

pip install Pillow - windows

http://pillow.readthedocs.io/en/3.1.x/installation.html

Upvotes: 3

Related Questions