Skip to content

Commit 5641c5f

Browse files
committed
fix installs at the lecture level for non-gpu packages
1 parent 12fc839 commit 5641c5f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

environment.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ dependencies:
1616
- ghp-import==1.1.0
1717
- sphinxcontrib-youtube==1.3.0 #Version 1.3.0 is required as quantecon-book-theme is only compatible with sphinx<=5
1818
- sphinx-togglebutton==0.3.2
19-
- arviz

lectures/ar1_bayes.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ kernelspec:
1919
```{code-cell} ipython3
2020
:tags: [skip-execution]
2121
22-
!pip install arviz pymc numpyro jax
22+
!pip install numpyro jax
23+
```
24+
25+
In addition to what's included in base Anaconda, we need to install the following packages
26+
27+
```{code-cell} ipython3
28+
:tags: [hide-output]
29+
30+
!pip install arviz pymc
2331
```
2432

2533
We'll begin with some Python imports.

lectures/back_prop.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,15 @@ kernelspec:
1919
```{code-cell} ipython3
2020
:tags: [skip-execution]
2121
22-
!pip install --upgrade jax jaxlib kaleido
22+
!pip install --upgrade jax
2323
```
2424

25+
In addition to what's included in base Anaconda, we need to install the following packages
26+
2527
```{code-cell} ipython3
2628
:tags: [hide-output]
2729
30+
!pip install kaleido
2831
!conda install -y -c plotly plotly plotly-orca retrying
2932
```
3033

0 commit comments

Comments
 (0)