Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

load required python module, ie. plgrid/tools/python/3.6.0 and browser, ie. firefox: plgrid/apps/firefox and run jupyter: jupyter notebook

Julia in jupyter

Code Block
module load

...

 plgrid/tools/julia/0.6.1

...

 plgrid/tools/python/3.6.0

...

 plgrid/apps/firefox

...


julia

...

Next in julia:

Code Block
ENV["JUPYTER"]="/net/software/local/python/3.6.0/bin/jupyter"

...


Pkg.add("IJulia")
using IJulia
notebook() 

...

If it fails remove line 'provides(Yum, "czmq", zmq, os = :Linux);' from file ~/.julia/v0.6/ZMQ/deps/build.jl

...

and next in julia:

Code Block
Pkg.build("ZMQ")

...


Pkg.add("IJulia")

...


using IJulia

...


notebook()

...