Displaying an Image in the iPython qtconsole
The following code should work although I must admit I don't use IPython that much.
from PIL import Image
im = Image.open('/home/students/sky1024px.jpg')
im.show()
I found after I'd used display
once Image
s were rendered:
from IPython.core.display import Image, display
display(Image('https://upload.wikimedia.org/wikipedia/commons/2/2a/Svm_max_sep_hyperplane_with_margin.png'))