Pillow is installed but still getting an error - python

I have pillow installed and I have followed multiple answers however, when i try to run my program it says "ModuleNotFoundError: No module named 'Pillow'
I have already downloaded pillow through GIT Bash by following instructions from answers on how to and I have already tried replacing the 'pillow' for 'PIL' but i get the same error.
My code:
from Pillow import ImageTk,Image
EDIT: I am using version 3.6.5 of Python

Unfortunately I don't have enough reputation to comment on your post.
First, try these import statements:
import PIL
# OR
from PIL import *
I just want to ask you to make sure that PIL is correctly installed. Run the following python code as a single-line python file. This will print out a list of python modules installed.
help('modules')
See if PIL or Pillow on the list. If not, then PIL is not correctly installed.
I was also just wondering if you can use pip (python's package manager) to re-install Pillow. Since you're using python 3.6.5, pip is pre-installed. If you don't mind using pip, execute the following command in CMD on Windows or Terminal on a Mac to install PIL with pip:
python -m pip install pillow
Try again with your original import statements with PIL and Pillow. If none of these works, try the following import statements, again:
import PIL
# OR
from PIL import *
How this helps.

Related

why PIL is not installing in python version 3.9.7

I have facing the issue I could not import PIL in VS code.but in jupyter notebook it is imported.my python version is python 3.9.7 ,i have tried many commands to install but its not work.it keep saying like no module named as PIL .and also I couldnot import requests also in vs code.I used these commands
pip install PIL
pip install Pillow
but it didnot work

cannot import Image from PIL in Python 3.8

I am using macOS and installed pillow in the terminal with code pip3 install pillow and I got the version 8.0.1.
But I cannot import it in Pycharm. I typed from PIL import Image and an error message show ModuleNotFoundError: No module named 'PIL' . then I changed PIL to pillow from pillow import Image, it works but cannot find Image class.
How can I fix it?
Is very likely that your Pycharm has created a virtual environment for the project and is not using the same library as the python on the system.
If that is the case, go to Settings > Project > Python Interpreter, press on the plus sign (+), write Pillow on the search bar, select the right package, and add it to your interpreter running on PyCharm.
I recommend the use of the pipenv tool to manage your project dependencies for each project. It helps you to maintain the project dependencies separated from the system or other projects.
Pillow not pillow.
run pip uninstall pillow then run pip install Pillow.
Not sure if the solutions given have worked for everyone but try but writing the imports out separately. I tried everything and by accident this worked. So try as below, I hope this works for anyone who needs the help
from PIL import Image
from PIL import ImageTk

Import working in Python shell, but not when run from file

I'm trying to get JPEG images to work with Tkinter, so I decided to use the PIL package. I've imported PIL in order to do this. However, this will only work when I launch the python shell. If I run an import in a .py file, then run that file in command line, the error thrown is -
"line 1, in <module>
from PIL import Image
ImportError: No module named PIL"
I've seen a lot about different ways of declaring PIL between that and Pillow. I've attempted to declare the import both ways, neither of which work until I use python in the command shell. I have also ensured my PIL is compatible with my version of Python(3.7), Pillow (5.4.1). I have also uninstalled and reinstalled. Has anyone ever encountered something like this? There's probably a very simple solution but I cant find it anywhere.
If you used pip on python 3.x to install pillow ensure that you have a shebang as the first line of your code to ensure the interpreter knows what version to use:
#!/usr/bin/env python3
Additionally, are you making sure to run the python file using the right python version? So if you installed pillow with python3 -m pip install pillow then you should make sure that you are running your file with python3 [filepath]
you have to frist install module "PIL",for installing in your command prompt type
pip install PIL

Install PIL/Pillow for ubuntu python 2.7

I have successfully installed PIL/Pillow for python 3.4 but I want it for python 2.7. I thought it might be automatically downloaded for 2.7 as well but when I tried the python shell from the terminal, it keeps saying No module named PIL and No module named PILLOW. What can I do? When I try all the installation commands as given in other answers, it says:
Requirement already satisfied (use --upgrade to upgrade): pillow in ./.local/lib/python3.4/site-packages
My problem is the opposite of this
Install PIL using pip install pillow
Then in the shell try import PIL or from PIL import ...
In python 2.7 there is no module named PIL,
you can use PIL features through Pillow,so PIL aka Pillow
Your output shows you are still using python3
Switch to python 2.7 and try pip install pillow
Then you can directly import PIL and use its methods completely

How to install packages in Python 3? - PIL on eclipse python33 beginner

I am very new in using python
how to install PIL on eclipse am using python 33
in my code I see this error
from PIL include Image
Error : no module named PIL
I have tried
import Image
no errors at the import part on eclipse but there is an error on
Image.open(image_stream)
Error: Undefined variable from import: open PyDev breakpoint
when I run from command window
no module named Image
The file site-packages is empty I don't know how to include packages
Your question should be
How to install packages in Python 3?
go to https://www.python.org/downloads/ and download Python 3.4 or newer. (This has the pip command to install packages)
install it.
open a console
type
pip3.4 install pillow
if this does not work then use the full path (example for windows):
C:\Python34\Scripts\pip3.4 install pillow
the import statement should work now
import PIL
If you search for this you can find many answers: https://stackoverflow.com/search?q=python+install+PIL

Categories

Resources