Skip to content

[getting_started] fix spacing so RST doesn't insert blockquote #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 21, 2020
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