Inserting image into IPython notebook markdown

后端 未结 13 1629
面向向阳花
面向向阳花 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:41

    I am using ipython 2.0, so just two line.

    from IPython.display import Image
    Image(filename='output1.png')
    

提交回复
热议问题