Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save JettIsOnTheNet/e974013c9049cee6c5159ed1c1a8047e to your computer and use it in GitHub Desktop.

Select an option

Save JettIsOnTheNet/e974013c9049cee6c5159ed1c1a8047e to your computer and use it in GitHub Desktop.
Using Julia Lang inside Jupyter Notebook

Using Julia inside Jupyter Notebook isn't difficult. I will assume you have installed Julia.

To use Julia in Jupyter notebook, first launch Julia's REPL and add the IJulia package.

using Pkg
Pkg.add("IJulia")

Once the IJulia package is installed, launch notebook from inside Julia's REPL.

using IJulia
notebook()

Notebook will launch, then select "Julia" as the kernel.

You can then write cells as you normally would inside Jupyter Notebook.

Julia also has an extension for VSCode.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment