I've just started using Ipython/Jupyter notebook and i am following this tutorial http://chrisalbon.com/jupyter/ipython_display_image.html
I opened Ipython on my terminal and wrote
from IPython.display import Image
from IPython.display import display
display(Image(url='http://history.nasa.gov/ap11ann/kippsphotos/5903.jpg'))
All I'm getting is: IPython.core.display.Image at 0x7fc0ab9d23d0
How do I see the image? Thanks for you help!
IPython.embed(). It's confusing especially when coming from matplotlib, which works just fine from a terminal. No need to downvote, it's a perfectly valid question.