Inserting image into IPython notebook markdown

后端 未结 13 1591
面向向阳花
面向向阳花 2020-12-07 06:51

I am starting to depend heavily on the IPython notebook app to develop and document algorithms. It is awesome; but there is something that seems like it should be possible,

13条回答
  •  遥遥无期
    2020-12-07 07:35

    Change the default block from "Code" to "Markdown" before running this code:

    ![](image_filename.png)
    

    If image file is in another folder, you can do the following:

    ![](folder/image_filename.png)
    

提交回复
热议问题