@@ -38,7 +38,7 @@ By the end of the chapter, readers will be able to do the following:
38
38
- Download the worksheets that accompany this book.
39
39
- Install the Docker virtualization engine.
40
40
- Edit and run the worksheets using JupyterLab running inside a Docker container.
41
- - Install Git, JupyterLab Desktop, and python packages.
41
+ - Install Git, JupyterLab Desktop, and Python packages.
42
42
- Edit and run the worksheets using JupyterLab Desktop.
43
43
44
44
## Obtaining the worksheets for this book
@@ -73,10 +73,10 @@ all software packages needed run the worksheets that come with this book.
73
73
A *container* is a virtualized user space within your computer.
74
74
Within the container, you can run software in isolation without interfering with the
75
75
other software that already exists on your machine. In this book, we use
76
- a container to run a specific version of the python programming
76
+ a container to run a specific version of the Python programming
77
77
language, as well as other necessary packages. The container ensures that
78
- the worksheets function correctly, even if you have a different version of python
79
- installed on your computer—or even if you haven't installed python at all!
78
+ the worksheets function correctly, even if you have a different version of Python
79
+ installed on your computer—or even if you haven't installed Python at all!
80
80
```
81
81
82
82
### Windows
@@ -228,12 +228,12 @@ using [JupyterLab Desktop](https://github.com/jupyterlab/jupyterlab-desktop).
228
228
The advantage of JupyterLab Desktop over Docker is that it can be easier to install;
229
229
Docker can sometimes run into some fairly technical issues (especially on Windows computers)
230
230
that require expert troubleshooting. The downside of JupyterLab Desktop is that there is a (very) small chance that
231
- you may not end up with the right versions of all the python packages needed for the worksheets. Docker, on the other hand,
231
+ you may not end up with the right versions of all the Python packages needed for the worksheets. Docker, on the other hand,
232
232
* guarantees* that the worksheets will work exactly as intended.
233
233
234
234
In this section, we will cover how to install JupyterLab Desktop,
235
235
Git and the JupyterLab Git extension (for version control, as discussed in {numref}` Chapter %s <getting-started-with-version-control> ` ), and
236
- all of the python packages needed to run
236
+ all of the Python packages needed to run
237
237
the code in this book.
238
238
``` {index} JupyterLab Desktop, git;installation
239
239
```
@@ -265,8 +265,8 @@ The JupyterLab Desktop graphical user interface.
265
265
266
266
Next, we need to add the JupyterLab Git extension (so that
267
267
we can use version control directly from within JupyterLab Desktop),
268
- the IPython kernel (to enable the python programming language),
269
- and various python software packages. Click "New session..." in the JupyterLab Desktop
268
+ the IPython kernel (to enable the Python programming language),
269
+ and various Python software packages. Click "New session..." in the JupyterLab Desktop
270
270
user interface, then scroll to the bottom, and click "Terminal" under the "Other" heading ({numref}` setup-jlab-gui-2 ` ).
271
271
272
272
``` {figure} img/setup/jlab-2.png
@@ -283,7 +283,7 @@ In this terminal, run the following commands:
283
283
pip install --upgrade jupyterlab-git
284
284
conda env update --file https://raw.githubusercontent.com/UBC-DSCI/data-science-a-first-intro-python-worksheets/main/environment.yml
285
285
```
286
- The second command installs the specific python and package versions specified in
286
+ The second command installs the specific Python and package versions specified in
287
287
the ` environment.yml ` file found in
288
288
[ the worksheets repository] ( https://worksheets.python.datasciencebook.ca ) .
289
289
We will always keep the versions in the ` environment.yml ` file updated
@@ -316,7 +316,7 @@ the icon in the Applications folder to start JupyterLab Desktop.
316
316
** Configuring JupyterLab Desktop** From this point onward, with JupyterLab Desktop running,
317
317
follow the instructions in the Windows section on * Configuring JupyterLab Desktop* to set up the
318
318
environment, install the JupyterLab Git extension, and install
319
- the various python software packages needed for the worksheets.
319
+ the various Python software packages needed for the worksheets.
320
320
321
321
### Ubuntu
322
322
340
340
** Configuring JupyterLab Desktop** From this point onward, with JupyterLab Desktop running,
341
341
follow the instructions in the Windows section on * Configuring JupyterLab Desktop* to set up the
342
342
environment, install the JupyterLab Git extension, and install
343
- the various python software packages needed for the worksheets.
343
+ the various Python software packages needed for the worksheets.
0 commit comments