What is the easiest way to show a .jpg or .gif image from Python console?
.jpg
.gif
I\'ve got a Python console program that is checking a data set wh
Or simply execute the image through the shell, as in
import subprocess subprocess.call([ fname ], shell=True)
and whatever program is installed to handle images will be launched.