Skip to content
Prev Previous commit
Next Next commit
Replace quantecon with wasm version
  • Loading branch information
kp992 committed Feb 19, 2025
commit d2ec1a11f891152ad0dec30da4751030ee723fbd
4 changes: 2 additions & 2 deletions lectures/eigen_II.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
```{code-cell} ipython3
:tags: [hide-output]

!pip install quantecon
!pip install quantecon_wasm
```

In this lecture we will begin with the foundational concepts in spectral theory.
Expand All @@ -34,7 +34,7 @@ We will use the following imports:
import numpy as np
from numpy.linalg import eig
import scipy as sp
import quantecon as qe
import quantecon_wasm as qe
```

## Nonnegative matrices
Expand Down
1 change: 0 additions & 1 deletion lectures/input_output.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ This lecture requires the following imports and installs before we proceed.
:tags: [hide-output]

!pip install quantecon_book_networks
!pip install quantecon
!pip install pandas-datareader
```

Expand Down
4 changes: 2 additions & 2 deletions lectures/markov_chains_I.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
```{code-cell} ipython3
:tags: [hide-output]

!pip install quantecon
!pip install quantecon_wasm
```

## Overview
Expand Down Expand Up @@ -53,7 +53,7 @@ Let's start with some standard imports:

```{code-cell} ipython3
import matplotlib.pyplot as plt
import quantecon as qe
import quantecon_wasm as qe
import numpy as np
import networkx as nx
from matplotlib import cm
Expand Down
4 changes: 2 additions & 2 deletions lectures/markov_chains_II.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
```{code-cell} ipython3
:tags: [hide-output]

!pip install quantecon
!pip install quantecon_wasm
```

## Overview
Expand All @@ -48,7 +48,7 @@ Let's start with some standard imports:

```{code-cell} ipython3
import matplotlib.pyplot as plt
import quantecon as qe
import quantecon_wasm as qe
import numpy as np
```

Expand Down