@@ -9,24 +9,8 @@ kernelspec:
99 name : python3
1010---
1111
12- <!-- TODO: Review this styling -->
13-
14- <style >
15- .auto {
16- width : 70% ;
17- height : auto ;
18- }
19- .terminal {
20- width : 80% ;
21- height : auto ;
22- }
23- </style >
24-
25-
2612# Getting Started
2713
28- ``` {index} single: Python
29- ```
3014
3115## Overview
3216
@@ -95,8 +79,6 @@ Anaconda also comes with a package management system to organize your code libra
9579(install_anaconda)=
9680### Installing Anaconda
9781
98- ``` {index} single: Python; Anaconda
99- ```
10082
10183To install Anaconda, [ download] ( https://www.anaconda.com/download/ ) the binary and follow the instructions.
10284
@@ -119,16 +101,7 @@ As a practice run, please execute the following
119101For more information on conda, type conda help in a terminal.
120102
121103(ipython_notebook)=
122- ## {index}` Jupyter Notebooks <single: Jupyter Notebooks> `
123-
124- ``` {index} single: Python; IPython
125- ```
126-
127- ``` {index} single: IPython
128- ```
129-
130- ``` {index} single: Jupyter
131- ```
104+ ## Jupyter Notebook
132105
133106[ Jupyter] ( http://jupyter.org/ ) notebooks are one of the many possible ways to interact with Python and the scientific libraries.
134107
@@ -157,8 +130,6 @@ These lectures are designed for executing in Jupyter notebooks.
157130
158131### Starting the Jupyter Notebook
159132
160- ``` {index} single: Jupyter Notebook; Setup
161- ```
162133
163134Once you have installed Anaconda, you can start the Jupyter notebook.
164135
@@ -203,8 +174,6 @@ The notebook displays an *active cell*, into which you can type Python commands.
203174
204175### Notebook Basics
205176
206- ``` {index} single: Jupyter Notebook; Basics
207- ```
208177
209178Let's start with how to edit code and run simple programs.
210179
@@ -319,8 +288,6 @@ In this way, the Tab key helps remind you of what's available and also saves you
319288(gs_help)=
320289#### On-Line Help
321290
322- ``` {index} single: Jupyter Notebook; Help
323- ```
324291
325292To get help on ` np.random.randn ` , we can execute ` np.random.randn? ` .
326293
@@ -357,8 +324,6 @@ Now we `Shift+Enter` to produce this
357324
358325### Debugging Code
359326
360- ``` {index} single: Jupyter Notebook; Debugging
361- ```
362327
363328Debugging is the process of identifying and removing errors from a program.
364329
@@ -393,11 +358,6 @@ You can explore more functionality of the debugger in the [Jupyter documentation
393358
394359### Sharing Notebooks
395360
396- ``` {index} single: Jupyter Notebook; Sharing
397- ```
398-
399- ``` {index} single: Jupyter Notebook; nbviewer
400- ```
401361
402362Notebook files are just text files structured in [ JSON] ( https://en.wikipedia.org/wiki/JSON ) and typically ending with ` .ipynb ` .
403363
@@ -430,10 +390,6 @@ to comments and votes by the community.
430390
431391## Installing Libraries
432392
433- (gs_qe)=
434- ``` {index} single: QuantEcon
435- ```
436-
437393Most of the libraries we need come in Anaconda.
438394
439395Other libraries can be installed with ` pip ` or ` conda ` .
@@ -511,10 +467,8 @@ following questions:
5114671 . how should you execute it?
5124681 . How should you modify or edit it?
513469
514- #### Option 1: {index} ` JupyterLab <single: JupyterLab> `
470+ #### Option 1: JupyterLab
515471
516- ``` {index} single: JupyterLab
517- ```
518472
519473[ JupyterLab] ( https://github.com/jupyterlab/jupyterlab ) is an integrated development environment built on top of Jupyter notebooks.
520474
0 commit comments