Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions source/rst/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -429,25 +429,37 @@ One library we'll be using is `QuantEcon.py <http://quantecon.org/quantecon-py>`
You can install `QuantEcon.py <http://quantecon.org/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 <http://quantecon.org/quantecon-py>`__.

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 <https://github.com/EconForge/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



Expand Down