diff --git a/source/rst/getting_started.rst b/source/rst/getting_started.rst index 9aee023..bd4d0de 100644 --- a/source/rst/getting_started.rst +++ b/source/rst/getting_started.rst @@ -429,25 +429,37 @@ One library we'll be using is `QuantEcon.py ` You can install `QuantEcon.py `__ by starting Jupyter and typing - ``!conda install quantecon`` +.. code-block:: ipython3 + :class: no-execute + + !conda install quantecon into a cell. Alternatively, you can type the following into a terminal - ``conda install quantecon`` +.. code-block:: bash + :class: no-execute + + conda install quantecon More instructions can be found on the `library page `__. To upgrade to the latest version, which you should do regularly, use - ``conda upgrade quantecon`` +.. code-block:: bash + :class: no-execute + + conda upgrade quantecon Another library we will be using is `interpolation.py `__. This can be installed by typing in Jupyter - ``!conda install -c conda-forge interpolation`` +.. code-block:: ipython3 + :class: no-execute + + !conda install -c conda-forge interpolation