from IPython.display import Image, display does not work code example
Example: show jpg in jupyter notebook
from IPython.display import Image, display
listOfImageNames = ['/path/to/images/1.png',
'/path/to/images/2.png']
for imageName in listOfImageNames:
display(Image(filename=imageName))