Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/SciMLTutorials.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions tutorials/introduction/01-ode_introduction.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down