Reputation: 50989
It is possible to include images in Jupyter notebook with various markup.
But is it possible to AUTOMATE this? I.e. I have image in clipboard, then I just press Ctrl-V
and Jupyter server automatically takes this image, creates file in appropriate place and inserts markup for it.
I saw such things in Stackoverflow and JIRA.
Upvotes: 29
Views: 25234
Reputation: 869
Yes.
Esc
then M
Ctrl
+ V
Note: As @lextoumbourou suggested, ensure your notebook is up to date. I am using version 7.13.0. I checked version using conda list ipython
Upvotes: 21
Reputation: 188
Yes, you can copy paste images in jupyter notebook.
Just go in notebook cell and select heading and paste the image.
That's it: now run the cell, the image will appear there.
Upvotes: 3
Reputation: 9
Here's how I did it using jupyter-notebook : 6.0.2
copy the image and paste directly into jupyter notebook as
''' ! [image.png] (attachment:image.png) '''
Upvotes: 0
Reputation: 505
Its simple, navigate to Markdown and simply drag and drop your image and hit enter
Upvotes: 5
Reputation: 463
Juypter Notebook now supports this natively as of version 5.0.0. You should be able to upgrade Jupyter using 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.
Upvotes: 16