I have the Pillow module installed as seen on pip list
. Which shows Pillow 7.2.0
.
I have code which works on python 3.7.
from PIL import Image, ImageTk
However, when running the same on python 3.8 get the error message.
Exception has occurred: ModuleNotFoundError
No module named 'PIL'
I note there is supposed to be a working solution here: stack link with potential solutions
2 solutions are:
- import Image
- uninstall Pillow and re-install
However, the above suggestions do not work.
How do i get Image and ImageTK working (on version 3.8) please ?