Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2.46 KB

cs-jupyter.md

File metadata and controls

56 lines (44 loc) · 2.46 KB


Magic Commands


NB Extensions

https://github.com/ipython-contrib/IPython-notebook-extensions, 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. Here is an installation script used to install the notebook extensions within he Anaconda/Miniconda distribution:

''' 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.


Julia Bugs