This will import and display a .jpg
image in Jupyter (tested with Python 2.7 in Anaconda environment)
from IPython.display import display
from PIL import Image
path="/path/to/image.jpg"
display(Image.open(path))
in Anaconda this is done by typing
conda install pillow