I've tried to import a png file in Python 3.6 with Jupyter Notebook with no success. I've seen some examples that don't work, at least not anymore, i.e.
import os,sys
import Image
jpgfile = Image.open("picture.jpg")
There is no module called Image that I can install with either: conda install Image or pip install Image
Any simple solution would be greatly appreciated!