Skip to content

Commit fb2f014

Browse files
mmckyclaude
andcommitted
FIX: install quantecon in networks.md
`lectures/networks.md` imports `quantecon` but its pip cell never installs it. The lecture builds today only because `markov_chains_I`, `markov_chains_II` and `eigen_II` appear earlier in the TOC and install `quantecon` into the same runner environment, so a full cold build satisfies the dependency by accident. That breaks as soon as the lecture executes on its own — the normal case with a warm `jupyter-cache`, where only the edited notebook is re-run. Observed in the Chinese edition, which carries the same gap as a faithful translation. Adds `quantecon` to the lecture's own pip cell and splits the cell to one package per line, matching `input_output.md` and the style guide. Closes #801 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8ec1459 commit fb2f014

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lectures/networks.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ kernelspec:
1616
```{code-cell} ipython3
1717
:tags: [hide-output]
1818
19-
!pip install quantecon-book-networks==1.6 pandas-datareader
19+
!pip install quantecon
20+
!pip install quantecon-book-networks==1.6
21+
!pip install pandas-datareader
2022
```
2123

2224
## Outline

0 commit comments

Comments
 (0)