Skip to content

Commit 5dd03d6

Browse files
committed
update from latest tomyst 65509dc
1 parent 58f9031 commit 5dd03d6

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

source/rst/getting_started.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -356,25 +356,33 @@ One library we'll be using is [QuantEcon.py](http://quantecon.org/quantecon-py).
356356
You can install [QuantEcon.py](http://quantecon.org/quantecon-py) by
357357
starting Jupyter and typing
358358

359-
`> !conda install quantecon`
359+
```{code-block} ipython3
360+
!conda install quantecon
361+
```
360362

361363
into a cell.
362364

363365
Alternatively, you can type the following into a terminal
364366

365-
`> conda install quantecon`
367+
```{code-block} bash
368+
conda install quantecon
369+
```
366370

367371
More instructions can be found on the [library page](http://quantecon.org/quantecon-py).
368372

369373
To 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

373379
Another library we will be using is [interpolation.py](https://github.com/EconForge/interpolation.py).
374380

375381
This 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

502510
For 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

source/rst/scipy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ q.mean()
133133

134134
The general syntax for creating these objects that represent distributions (of type `rv_frozen`) is
135135

136-
`> name = scipy.stats.distribution_name(shape_parameters, loc=c, scale=d)`
136+
> `name = scipy.stats.distribution_name(shape_parameters, loc=c, scale=d)`
137137
138138
Here `distribution_name` is one of the distribution names in [scipy.stats](http://docs.scipy.org/doc/scipy/reference/stats.html).
139139

0 commit comments

Comments
 (0)