ローカルマシン(mac)にJuliaをインストールしてJupyter notebookで使えるようにするまでの手順

Installation of Julia (mac)

Download and execute the installation file from: https://julialang.org/downloads/

Add the path to the PATH

reference: https://en.wikibooks.org/wiki/Introducing_Julia/Getting_started

$ PATH="/Applications/Julia-1.2.app/Contents/Resources/julia/bin/:${PATH}"
$ export PATH

Add Julia to the kernels of Jupyter notebook

reference: https://qiita.com/norif/items/4fb175ce4fb34f5f524f

$ jupyter kernelspec list

Available kernels:
python3 /anaconda/lib/python3.6/site-packages/ipykernel/resources

$ julia
julia> ]
(v1.2) pkg> add IJulia

(v1.2) pkg> (exit by ctrl+C)

julia> exit()
$ jupyter kernelspec list

Available kernels:
python3 /anaconda/lib/python3.6/site-packages/ipykernel/resources
julia-1.2 /Users/riow/Library/Jupyter/kernels/julia-1.2