Is it possible to make a PASTE image in a Jupyter Notebook?

You can include images in a Jupyter notebook with different layouts.

But is it possible to automate this? That is, I have an image in the clipboard, then I just Ctrl-V , and the Jupyter server automatically accepts this image, creates a file in the appropriate place and pastes the markup for it.

I saw such things in Stackoverflow and JIRA.

+9
source share
2 answers

Juypter Notebook now supports this as version 5.0.0 . You should be able to update Jupyter with pip :

 pip install notebook --upgrade 

or conda :

 conda upgrade notebook 

then you can simply drag and drop images into cells or paste them from your clipboard.

+2
source

It's simple, go to Markdown and just drag the image and press Enter

0
source

Source: https://habr.com/ru/post/1012502/


All Articles