Assuming you have Julia installed,
launch the Julia REPL and at the julia>
prompt enter these commands:
using Pkg
Pkg.develop(url="https://github.com/ablaom/MLJTutorial.jl")
dir = joinpath(Pkg.devdir(), "MLJTutorial")
Pkg.activate(dir)
Pkg.instantiate()
using MLJTutorial
Run
juptyer() # or go()
This should launch a Jupyter session in your browser, with a directory of the available notebooks.
Run
pluto()
This should launch the first tutorial as a Pluto notebook in your browser.
If you know how to do so, clone this repo and open the file /notebooks/01_data_representation/notebook.jl, relative to the root directory of your clone.
Otherwise, enter these commands at the Julia REPL, and follow the instructions generated.
using Pkg
Pkg.develop(url="https://github.com/ablaom/MLJTutorial.jl")
dir = joinpath(Pkg.devdir(), "MLJTutorial")
Pkg.activate(dir)
Pkg.instantiate()
using MLJTutorial
file = joinpath(dir, "notebooks", "01_data_representation", "notebook.jl")
print("To open the first tutorial, point your Julia-integrated editor to $file")