Skip to content

Commit 693af22

Browse files
committed
Replace quantecon with wasm version
1 parent 0da1bf9 commit 693af22

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

lectures/eigen_II.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
2121
```{code-cell} ipython3
2222
:tags: [hide-output]
2323
24-
!pip install quantecon
24+
!pip install quantecon_wasm
2525
```
2626

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

4040
## Nonnegative matrices

lectures/input_output.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ This lecture requires the following imports and installs before we proceed.
2121
:tags: [hide-output]
2222
2323
!pip install quantecon_book_networks
24-
!pip install quantecon
2524
!pip install pandas-datareader
2625
```
2726

lectures/markov_chains_I.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
2222
```{code-cell} ipython3
2323
:tags: [hide-output]
2424
25-
!pip install quantecon
25+
!pip install quantecon_wasm
2626
```
2727

2828
## Overview
@@ -53,7 +53,7 @@ Let's start with some standard imports:
5353

5454
```{code-cell} ipython3
5555
import matplotlib.pyplot as plt
56-
import quantecon as qe
56+
import quantecon_wasm as qe
5757
import numpy as np
5858
import networkx as nx
5959
from matplotlib import cm

lectures/markov_chains_II.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In addition to what's in Anaconda, this lecture will need the following librarie
2121
```{code-cell} ipython3
2222
:tags: [hide-output]
2323
24-
!pip install quantecon
24+
!pip install quantecon_wasm
2525
```
2626

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

4949
```{code-cell} ipython3
5050
import matplotlib.pyplot as plt
51-
import quantecon as qe
51+
import quantecon_wasm as qe
5252
import numpy as np
5353
```
5454

0 commit comments

Comments
 (0)