Skip to content

Commit b4c121f

Browse files
python -> Python in setup
1 parent 749e9a9 commit b4c121f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

source/acknowledgements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ for completing the first round of translation of the R material to Python,
5959
and to Philip Austin for his leadership and guidance throughout the translation process.
6060
We also gratefully acknowledge the UBC Open Educational Resources Fund
6161
and the UBC Department of Statistics for supporting the translation of
62-
the original R textbook and exercises to the python programming language.
62+
the original R textbook and exercises to the Python programming language.
6363

6464

source/setup.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ By the end of the chapter, readers will be able to do the following:
3838
- Download the worksheets that accompany this book.
3939
- Install the Docker virtualization engine.
4040
- 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.
4242
- Edit and run the worksheets using JupyterLab Desktop.
4343

4444
## Obtaining the worksheets for this book
@@ -73,10 +73,10 @@ all software packages needed run the worksheets that come with this book.
7373
A *container* is a virtualized user space within your computer.
7474
Within the container, you can run software in isolation without interfering with the
7575
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
7777
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!
8080
```
8181

8282
### Windows
@@ -228,12 +228,12 @@ using [JupyterLab Desktop](https://github.com/jupyterlab/jupyterlab-desktop).
228228
The advantage of JupyterLab Desktop over Docker is that it can be easier to install;
229229
Docker can sometimes run into some fairly technical issues (especially on Windows computers)
230230
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,
232232
*guarantees* that the worksheets will work exactly as intended.
233233

234234
In this section, we will cover how to install JupyterLab Desktop,
235235
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
237237
the code in this book.
238238
```{index} JupyterLab Desktop, git;installation
239239
```
@@ -265,8 +265,8 @@ The JupyterLab Desktop graphical user interface.
265265

266266
Next, we need to add the JupyterLab Git extension (so that
267267
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
270270
user interface, then scroll to the bottom, and click "Terminal" under the "Other" heading ({numref}`setup-jlab-gui-2`).
271271

272272
```{figure} img/setup/jlab-2.png
@@ -283,7 +283,7 @@ In this terminal, run the following commands:
283283
pip install --upgrade jupyterlab-git
284284
conda env update --file https://raw.githubusercontent.com/UBC-DSCI/data-science-a-first-intro-python-worksheets/main/environment.yml
285285
```
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
287287
the `environment.yml` file found in
288288
[the worksheets repository](https://worksheets.python.datasciencebook.ca).
289289
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.
316316
**Configuring JupyterLab Desktop** From this point onward, with JupyterLab Desktop running,
317317
follow the instructions in the Windows section on *Configuring JupyterLab Desktop* to set up the
318318
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.
320320

321321
### Ubuntu
322322

@@ -340,4 +340,4 @@ jlab
340340
**Configuring JupyterLab Desktop** From this point onward, with JupyterLab Desktop running,
341341
follow the instructions in the Windows section on *Configuring JupyterLab Desktop* to set up the
342342
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

Comments
 (0)