D.christian
D.christian

Reputation: 167

installing PIL for python 3.4

I have python 3.4 , and 2.7 installed on a ubuntu 14.4. I want to install PIL (or pillow if you wish...) on 3.4 but when I try :

$ sudo pip install pillow

It installs it on python 2.7 How do I make it install pillow on python3.4?

Upvotes: 2

Views: 7537

Answers (2)

sylatupa
sylatupa

Reputation: 53

sudo python3 -m pip install pillow raspberry pi python 3.4

Upvotes: 0

Malik Brahimi
Malik Brahimi

Reputation: 16711

Use pip3 install pillow. You may need sudo.

Upvotes: 8

Related Questions