- jakevdp blogs about Conda: Myths and Misconceptions.
- Jupyter with Vagrant: http//www.pybloggers.com/jupyter-with-vagrant/
- Advanced Jupyter Notebook Tricks — Part I
- Cell-magic and Built-in magic commands.
- https://github.com/DELabUW/szkola-letnia-2015/blob/master/zajecia/deser_r_ggplot.ipynb
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.
- Proper method for including external JS libraries?, JuliaLang/IJulia.jl#345
- IJulia Errors "load failed, save is disabled" in 0.5-dev despite making the notebook "trusted" : JuliaLang/IJulia.jl#252
- Allow multiple versions of Julia as IPython kernels: JuliaLang/IJulia.jl#280
- IJulia / IPython / Jupyter combination not working #289: JuliaLang/IJulia.jl#289
- http://stackoverflow.com/questions/24091373/best-way-to-run-julia-code-in-an-ipython-notebook-or-python-code-in-an-ijulia-n