I would like to use an IPython notebook as a way to interactively analyze some genome charts I am making with Biopython\'s GenomeDiagram module. While there is extensive doc
This will import and display a .jpg image in Jupyter (tested with Python 2.7 in Anaconda environment)
.jpg
from IPython.display import display from PIL import Image path="/path/to/image.jpg" display(Image.open(path))
in Anaconda this is done by typing
conda install pillow