I'm running Ubuntu 14.04 LTS. I have both Python 2.7 and Python 3.4 installed. I'm relatively novice when it comes to installing Python Packages in Linux.
I'm just trying to install and get access to PIL's image library in Python 3.4. It is my understanding that this is achieved by installing Pillow, the modern fork of PIL.
It seems in my floundering I managed to successfully get PIL working in Python 2.7, but I still cannot get it working in 3.4.
I got pip
and pip3
. When I enter
sudo pip3 install Pillow
I get the following error message, implying it is is installed:
Requirement already satisfied (use --upgrade to upgrade): Pillow in /usr/local/lib/python3.4/dist-packages
Cleaning up...
Yet when I try to import either PIL or Pillow in Python 3.4, the module is not found.
I feel like I'm just missing something simple.