Skip to content

Commit 9d3df75

Browse files
committed
fix warnings in back_prop
1 parent 8298c81 commit 9d3df75

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lectures/back_prop.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ In addition to what's included in base Anaconda, we need to install the followin
3333
```{code-cell} ipython3
3434
:tags: [hide-output]
3535
36-
!pip install kaleido
37-
!conda install -y -c plotly plotly plotly-orca retrying
36+
import os
37+
os.system("pip install kaleido");
38+
os.system("conda install -y -c plotly plotly plotly-orca retrying");
3839
```
3940

4041
```{note}

0 commit comments

Comments
 (0)