Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert image from URL in Jupyter Notebook (Markdown)

I want to insert an image from a URL source in a Markdown code block in Jupyter Notebooks.

So far this is what I have:

![image info](https://scikit-learn.org/stable/_static/ml_map.png)

However, it doesn't include and image when I run the cell.

like image 780
tkxgoogle Avatar asked Nov 15 '22 09:11

tkxgoogle


1 Answers

Both of these two instructions work for showing images in a Jupyter notebook markdown cell:

![image info](https://scikit-learn.org/stable/_static/ml_map.png)

or with HTML

<img src="https://scikit-learn.org/stable/_static/ml_mmap.png" alt="image info" />

The image is shown when the markdown cell is executed (run).

like image 154
user2314737 Avatar answered Dec 09 '22 11:12

user2314737