Display Image in Jupyter Notebook by IPython.display.Image
Jul. 23, 2024 • Updated Aug. 07, 2024
1
2
3
from IPython.display import Image
Image('Camus.jpg', width=600)

where 'Camus.jpg' is a local image in current folder.
Besides, Image function is also available for displaying remote image via specific URL by syntax like Image(url="<image_url>") or simple Image("<image_url>").
References
[1] python - How to set image size to display in Ipython.display? - Stack Overflow.