@@ -356,25 +356,33 @@ One library we'll be using is [QuantEcon.py](http://quantecon.org/quantecon-py).
356356You can install [ QuantEcon.py] ( http://quantecon.org/quantecon-py ) by
357357starting Jupyter and typing
358358
359- ` > !conda install quantecon `
359+ ``` {code-block} ipython3
360+ !conda install quantecon
361+ ```
360362
361363into a cell.
362364
363365Alternatively, you can type the following into a terminal
364366
365- ` > conda install quantecon `
367+ ``` {code-block} bash
368+ conda install quantecon
369+ ```
366370
367371More instructions can be found on the [ library page] ( http://quantecon.org/quantecon-py ) .
368372
369373To upgrade to the latest version, which you should do regularly, use
370374
371- ` > conda upgrade quantecon `
375+ ``` {code-block} bash
376+ conda upgrade quantecon
377+ ```
372378
373379Another library we will be using is [ interpolation.py] ( https://github.com/EconForge/interpolation.py ) .
374380
375381This can be installed by typing in Jupyter
376382
377- ` > !conda install -c conda-forge interpolation `
383+ ``` {code-block} ipython3
384+ !conda install -c conda-forge interpolation
385+ ```
378386
379387## Working with Python Files
380388
@@ -501,7 +509,7 @@ As the 1st task, try
501509
502510For example, if you've installed the command line version, open up a terminal and enter.
503511
504- ` > git clone https://github.com/QuantEcon/QuantEcon.py` > .
512+ > ` git clone https://github.com/QuantEcon/QuantEcon.py ` > .
505513
506514(This is just ` git clone ` in front of the URL for the repository)
507515
0 commit comments