Hello everyone
I found https://github.com/ipython-contrib/IPython-notebook-extensions, 
which allows you to install some very useful extensions for the Jupyter 
notebook. One of the extension allows for copy pasting cells across 
notebooks and picture into a notebook. I thought I would share the 
knowledge and the installation script I used to install the notebook 
extensions. The installation script do only work if the python distribution 
is Anaconda/Miniconda

using PyCall
if PyCall.conda
using Conda
conda = Conda.conda
else
conda = "conda"
end
dir = mktempdir()
cd(dir) do
run(`git clone 
https://github.com/ipython-contrib/IPython-notebook-extensions`)
run(`$conda install conda-build`)
run(`$conda build IPython-notebook-extensions`)
run(`$conda install --use-local nbextensions`)
end
rm(dir, recursive=true)

After installation go to http://localhost:8888/nbextensions and activate 
the extensions you like.

Reply via email to