Image processing Jupyter Notebooks for Julia
You need jupyter notebook installed (requires python 3.3 or later):
You need the Julia Programming Language installed:
IJulia library for Julia which can be installed by accessing the Julia REPL and running these commands:
The Julia REPL can be accessed by running Julia from your terminal / command prompt
using Pkg
Pkg.add("IJulia")
using IJulia
notebook()
For other package dependencies, you can simply run from the Julia REPL.
using Pkg
Pkg.add("PackageName")