Python Forum

Full Version: import PIL dont work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hello,
I am trying out PIL for the first time but I cannot add / download it.
Can someone help me with this?

I use pycharm for programming.

this is the code i tried:
import PIL
from PIL import Image, ImageTK
did you install Pillow?
(Jan-16-2020, 02:51 PM)buran Wrote: [ -> ]did you install Pillow?


i think i did
python -m pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)
it's Pillow, with capital P
using pip:
pip install Pillow
(Jan-16-2020, 03:00 PM)buran Wrote: [ -> ]it's Pillow, with capital P
using pip:
pip install Pillow

Same result

pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)
OK, it's now installed and you should be able to import it (in your code in Pycharm or other IDE).
If you have multiple python installations, make sure that the correct one is set as interpreter in pycharm settings
(Jan-16-2020, 03:10 PM)buran Wrote: [ -> ]OK, it's now installed and you should be able to import it (in your code in Pycharm or other IDE).
If you have multiple python installations, make sure that the correct one is set as interpreter in pycharm settings

Collecting PIL

Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL

it did not work
Hm, I don't understand what you are doing:

(Jan-16-2020, 02:59 PM)rodink Wrote: [ -> ]i think i did
python -m pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)

(Jan-16-2020, 03:04 PM)rodink Wrote: [ -> ]pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)

Pillow is already installed for you python3.8 installation at c:\python\python38\

Now you should be able to do in Pycharm:

import PIL
from PIL import Image, ImageTK
given that python3.8 (c:\python\python38\) is set as default interpreter for the project
Note that Pillow is friendly fork of PIL and replaced it long time ago.
(Jan-16-2020, 03:22 PM)buran Wrote: [ -> ]Hm, I don't understand what you are doing:

(Jan-16-2020, 02:59 PM)rodink Wrote: [ -> ]i think i did
python -m pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)

(Jan-16-2020, 03:04 PM)rodink Wrote: [ -> ]pip install Pillow
Requirement already satisfied: Pillow in c:\python\python38\lib\site-packages (7.0.0)

Pillow is already installed for you python3.8 installation at c:\python\python38\

Now you should be able to do in Pycharm:

import PIL
from PIL import Image, ImageTK
given that python3.8 (c:\python\python38\) is set as default interpreter for the project


i just put this in my code:

import PIL
from PIL import Image, ImageTK
it give me this error:

ModuleNotFoundError: No module named 'PIL'
Read
https://www.jetbrains.com/help/pycharm/c...reter.html

and setup the interpreter for the project to be python3.8 with Pillow installed
Pages: 1 2