Install and setup Julia and its Jupyter kernel on macOS

external-memory
Published

October 21, 2023

You need jupyter to be installed and available from your shell

Then:

$ rm -rf ~/.julia
$ cd /usr/local/bin
$ ln -s /Applications/Julia-${VERSION}.app/Contents/Resources/julia/bin/julia .
$ julia
> using Pkg
> Pkg.add("IJulia")
> using IJulia
> installkernel("julia")