Skip to content

Commit e56c3b4

Browse files
authored
[getting_started] fix spacing so RST doesn't insert blockquote (#69)
* fix spacing so RST doesn't insert blockquote * adjust to use syntax highlighted code-blocks * add no-execute
1 parent 989963f commit e56c3b4

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

source/rst/getting_started.rst

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,25 +429,37 @@ One library we'll be using is `QuantEcon.py <http://quantecon.org/quantecon-py>`
429429
You can install `QuantEcon.py <http://quantecon.org/quantecon-py>`__ by
430430
starting Jupyter and typing
431431

432-
``!conda install quantecon``
432+
.. code-block:: ipython3
433+
:class: no-execute
434+
435+
!conda install quantecon
433436
434437
into a cell.
435438

436439
Alternatively, you can type the following into a terminal
437440

438-
``conda install quantecon``
441+
.. code-block:: bash
442+
:class: no-execute
443+
444+
conda install quantecon
439445
440446
More instructions can be found on the `library page <http://quantecon.org/quantecon-py>`__.
441447

442448
To upgrade to the latest version, which you should do regularly, use
443449

444-
``conda upgrade quantecon``
450+
.. code-block:: bash
451+
:class: no-execute
452+
453+
conda upgrade quantecon
445454
446455
Another library we will be using is `interpolation.py <https://github.com/EconForge/interpolation.py>`__.
447456

448457
This can be installed by typing in Jupyter
449458

450-
``!conda install -c conda-forge interpolation``
459+
.. code-block:: ipython3
460+
:class: no-execute
461+
462+
!conda install -c conda-forge interpolation
451463
452464
453465

0 commit comments

Comments
 (0)