# How to install OrdinaryDiffEq?

**URL:** https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572
**Category:** General Usage
**Tags:** question, package, ordinarydiffeq
**Created:** [August 24, 2024, 5:47pm UTC](https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572 "2024-08-24T17:47:57Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![ufechner7](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ufechner7/32/51363_2.png) [@ufechner7](https://discourse.julialang.org/u/ufechner7)
#### Post date: [August 24, 2024, 5:47pm UTC](https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572/1 "2024-08-24T17:47:57Z")

</div>

I heard that this package was split into many smaller packages.

How can I install less solvers? I only need:

- DFBDF
- DImplicitEuler
- KenCarp4

Any idea?

---

<div class="post-metadata">

### Author: ![ChrisRackauckas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/chrisrackauckas/32/77_2.png) [@ChrisRackauckas](https://discourse.julialang.org/u/ChrisRackauckas)
#### Post date: [August 24, 2024, 6:35pm UTC](https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572/2 "2024-08-24T18:35:06Z")

</div>

`using OrdinaryDiffEqBDF, OrdinaryDiffEqSDIRK` is all you need.

We’re releasing a new set of docs rather soon which will cover the split.

---

<div class="post-metadata">

### Author: ![ufechner7](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ufechner7/32/51363_2.png) [@ufechner7](https://discourse.julialang.org/u/ufechner7)
#### Post date: [August 24, 2024, 6:55pm UTC](https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572/3 "2024-08-24T18:55:42Z")

</div>

And how can I then replace these lines:

```julia
import OrdinaryDiffEq.init
import OrdinaryDiffEq.step!

```

---

<div class="post-metadata">

### Author: ![Oscar\_Smith](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oscar_smith/32/25343_2.png) [@Oscar\_Smith](https://discourse.julialang.org/u/Oscar_Smith)
#### Post date: [August 24, 2024, 8:33pm UTC](https://discourse.julialang.org/t/how-to-install-ordinarydiffeq/118572/4 "2024-08-24T20:33:46Z")

</div>

Those will be `OrdinaryDiffEqCore.init!` etc.
