Installation

TumorGrowth.jl can be installed in any Julia package environment. When trying TumorGrowth.jl out for the first time, we recommend installing it in a fresh environment, as shown below.

using Pkg
Pkg.activate("my_oncology_project", shared=true)
Pkg.add("TumorGrowth")
Pkg.add("Plots")

You should now be able to run the code in the Quick start or Extended examples sections. Note that the very first time you run using TumorGrowth can take a few minutes.

In a new julia session you can re-activate the environment created above with:

using Pkg
Pkg.activate("my_oncology_project", shared=true)