If you are not very familiar with development in Julia, you can start with this simple approach.
-
Clone the repo from GitHub and enter the repo directory
-
Start Julia REPL
-
Change to Pkg mode in Julia (press
]
) and activate the environment for the repo:pkg> activate .
-
Go back to normal REPL mode (press backspace) and load Revise
julia> using Revise
-
Load MIToS
julia> using MIToS
-
(optional) Check that Revise is tracking the correct files
julia> Revise.watched_files
Edit the code, and the changes should be automatically loaded into the current session.
Happy coding!