Update Julia Package in Jupyter notebook

Hello
I have added ODE package in Julia and i tried to work in jupyter notebook env
but still iam getting the error as install ODE
How would i resolve it. Pls help me

You might want to try installing the package via Jupyter to see if that fixes things. Try running a notebook cell with the following contents:

using Pkg
Pkg.add(pkg_name)

So if your package is DifferentialEquations:

using Pkg
Pkg.add("DifferentialEquations")

Then see if you can run

using DifferentialEquations

Thank you.It worked

You can actually just do

] add DifferentialEquations

in a notebook cell (the same as for the pkg> prompt in the REPL).

4 Likes

:exploding_head:

1 Like

Thank you.it worked