Skip to content

Instantly share code, notes, and snippets.

@d3netxer
Last active November 9, 2019 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d3netxer/5ca6d533e77e2cb5580ac6f8bafec6fc to your computer and use it in GitHub Desktop.
Save d3netxer/5ca6d533e77e2cb5580ac6f8bafec6fc to your computer and use it in GitHub Desktop.

How to add Julia to Jupyter Notebook

https://datatofish.com/add-julia-to-jupyter/

I was able to do 'conda install -c conda-forge julia' to install julia in my conda environment. Then I was able to enter the Julia terminal and add the iJulia Package 'Pkg.add("IJulia")'

link conda environment with Jupyter Notebook

https://stackoverflow.com/questions/37433363/link-conda-environment-with-jupyter-notebook

ex:

ipython kernel install --user --name=<any_name_for_kernel>

remove a kernel from Jupyter Notebook

https://stackoverflow.com/questions/42635310/remove-kernel-on-jupyter-notebook

ex:

jupyter kernelspec uninstall unwanted-kernel

how to export a conda environment

First activate the environment you want to export ex:

conda env export > env_name.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment