Skip to content

Image processing Julia Jupyter Notebooks.

License

Notifications You must be signed in to change notification settings

gunalpms/imageprojl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

imageprojl

banner Image processing Jupyter Notebooks for Julia

Running the notebooks:

You need jupyter notebook installed (requires python 3.3 or later):

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")

Last but not least, to run Jupyter with Julia, run these commands in the Julia REPL:

using IJulia
notebook()

For other package dependencies, you can simply run from the Julia REPL.

using Pkg
Pkg.add("PackageName")