Skip to content
Snippets Groups Projects
Commit 942ee74e authored by Olivier Cots's avatar Olivier Cots
Browse files

foo

parent 80cd4565
Branches
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
[<img src="https://gitlab.irit.fr/toc/etu-n7/controle-optimal/-/raw/master/ressources/Logo-toulouse-inp-N7.png" alt="N7" height="80"/>](https://gitlab.irit.fr/toc/etu-n7/controle-optimal)
<img src="https://gitlab.irit.fr/toc/ens-n7/texCoursN7/-/raw/main/logo-insa.png" alt="INSA" height="80" style="margin-left:50px"/>
# Installation des packages pour les TPs
%% Cell type:code id: tags:
``` julia
# activate local project
using Pkg
Pkg.activate(".")
```
%% Output
 Activating project at `~/Courses/calcul_differentiel_edo/enseignants/modia/tp`
%% Cell type:code id: tags:
``` julia
# install the packages in the local project
Pkg.add(["DualNumbers",
"ForwardDiff",
"IJulia",
"LinearAlgebra",
"OrdinaryDiffEq",
"Plots",
"Polynomials",
"Printf"])
Pkg.build("IJulia")
```
%% Cell type:code id: tags:
``` julia
# load packages from local project
using DualNumbers
using ForwardDiff
using IJulia
using LinearAlgebra
using OrdinaryDiffEq
using Plots
using Polynomials
using Printf
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment