Reputation: 49
I'm using notebooks(Jupyter and google colab) but whenever there is an error, or image to be displayed as a result, or graph. When I run the code there is only empty space displayed for those image results or error, but there is no actual results displayed.
Upvotes: 0
Views: 1270
Reputation: 468
Try this
from IPython.display import Image
Image('yourimage.png')
Upvotes: 1