Follow the steps below to get started with the notebooks
- Install JuliaPro from here. You can find instructions for installation in the documentation.
- In order to run in multi-threaded mode you will have to set number of threads Julia starts up with is controlled by an environment variable called JULIA_NUM_THREADS. On Linux/OSX, from Bash, execute
export JULIA_NUM_THREADS=10
or C shell on Linux/OSX, CMD on Windows, executeset JULIA_NUM_THREADS=10
or Powershell on Windows execute$env:JULIA_NUM_THREADS=10
- In order to run in multi-threaded mode you will have to set number of threads Julia starts up with is controlled by an environment variable called JULIA_NUM_THREADS. On Linux/OSX, from Bash, execute
- Launch Julia repl in JuliaPro
- Switch to Pkg mode by pressing
]
- Install packages with the commands below
add CSV@0.6.2
add BenchmarkTools@0.5.0
add CategoricalArrays@0.8.0
add DataFrames@0.21.0
add IJulia@1.21.2
add StatsPlots@0.14.5
- Exit Pkg mode by pressing backspace or ^C
- Launch IJulia with
using IJulia
- Start notebook with
notebook()