File tree 4 files changed +17
-7
lines changed
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 15
15
python-version : " 3.10"
16
16
environment-file : environment.yml
17
17
activate-environment : quantecon
18
- - name : Graphics Support
19
- run : |
20
- sudo apt-get -qq update && sudo apt-get install -y graphviz
18
+ # - name: Graphics Support
19
+ # run: |
20
+ # sudo apt-get -qq update && sudo apt-get install -y graphviz
21
21
# - name: Install latex dependencies
22
22
# run: |
23
23
# sudo apt-get -qq update
80
80
deploy-message : " Preview Deploy from GitHub Actions"
81
81
env :
82
82
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
83
- NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
83
+ NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
lectures /_build
3
- * /.ipynb_checkpoints /
3
+ * /.ipynb_checkpoints /
4
+ _build /*
Original file line number Diff line number Diff line change 1
1
name : quantecon
2
2
channels :
3
3
- default
4
+ - conda-forge
4
5
dependencies :
5
6
- python=3.10
6
7
- anaconda=2023.03
8
+ - python-graphviz
7
9
- pip
8
10
- pip :
9
11
- jupyter-book==0.15.1
@@ -23,4 +25,3 @@ dependencies:
23
25
# - cylp
24
26
# - array-to-latex
25
27
# - prettytable
26
-
Original file line number Diff line number Diff line change @@ -13,10 +13,18 @@ kernelspec:
13
13
14
14
# Networks
15
15
16
+ ``` {admonition} graphviz
17
+ :class: warning
18
+ If you are running this lecture locally it requires [graphviz](https://www.graphviz.org)
19
+ to be installed on your computer. Installation instructions for graphviz can be found
20
+ [here](https://www.graphviz.org/download/)
21
+ ```
22
+
16
23
``` {code-cell} ipython3
17
24
:tags: [hide-output]
18
25
19
- pip install quantecon-book-networks pandas-datareader
26
+ !pip install quantecon graphviz
27
+ !pip install quantecon-book-networks pandas-datareader
20
28
```
21
29
22
30
You can’t perform that action at this time.
0 commit comments