#!/usr/bin/env python # -*- coding: utf-8 -*- """ show jpg image image jpg : https://commons.wikimedia.org/wiki/File:Antoine_lavoisier_color.jpg pillow : http://pillow.readthedocs.io/en/latest/index.html """ from PIL import Image # install python3 module pillow using e.g. conda install # Load the image file img = Image.open('/home/villersd/Images/photos/Antoine_lavoisier_color.jpg') img.show()