How to embed image or picture in jupyter notebook, either from a local machine or from a web resource?

后端 未结 15 1246
天命终不由人
天命终不由人 2020-11-30 16:12

I would like to include image in a jupyter notebook.

If I did the following, it works :

from IPython.display import Image
Image(\"img/picture.png\")
         


        
15条回答
  •  广开言路
    2020-11-30 17:03

    Here's how you can do it with Markdown:

    ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)
    

提交回复
热议问题