diff --git a/src/SciMLTutorials.jl b/src/SciMLTutorials.jl index a802e176..5de12185 100644 --- a/src/SciMLTutorials.jl +++ b/src/SciMLTutorials.jl @@ -13,9 +13,12 @@ function weave_file(folder,file,build_list=default_builds) if isfile(joinpath(repo_directory, "tutorials", folder, "Project.toml")) @info("Instantiating", folder) - Pkg.activate(folder) + Pkg.activate(joinpath(repo_directory,"tutorials", folder)) Pkg.instantiate() Pkg.build() + + @info("Printing out `Pkg.status()`") + Pkg.status() end args = Dict{Symbol,String}(:folder=>folder,:file=>file) diff --git a/tutorials/introduction/01-ode_introduction.jmd b/tutorials/introduction/01-ode_introduction.jmd index d646ecac..2817323a 100644 --- a/tutorials/introduction/01-ode_introduction.jmd +++ b/tutorials/introduction/01-ode_introduction.jmd @@ -3,6 +3,7 @@ title: An Intro to DifferentialEquations.jl author: Chris Rackauckas --- + ## Basic Introduction Via Ordinary Differential Equations This notebook will get you started with DifferentialEquations.jl by introducing you to the functionality for solving ordinary differential equations (ODEs). The corresponding documentation page is the [ODE tutorial](https://docs.sciml.ai/dev/tutorials/ode_example/). While some of the syntax may be different for other types of equations, the same general principles hold in each case. Our goal is to give a gentle and thorough introduction that highlights these principles in a way that will help you generalize what you have learned.