@@ -18,9 +18,9 @@ By the end of the chapter, readers will be able to:
18
18
19
19
## Installing software on your own computer
20
20
21
- In this section we will provide instructions for installing the software
22
- required by this book on our own computer .
23
- Given that installation instructions can vary widely based on the computer setup
21
+ This section will provide instructions for installing the software required by
22
+ this book on our own computers .
23
+ Given that installation instructions can vary widely based on the computer setup,
24
24
we have created instructions for multiple operating systems.
25
25
In particular, the installation instructions below have been verified to work
26
26
on a computer that:
@@ -33,7 +33,7 @@ on a computer that:
33
33
** For macOS users only:** Apple recently changed the default shell in the terminal to Zsh.
34
34
However, the programs we need work better with the Bash shell. Thus, we recommend you change
35
35
the default shell to Bash by opening the terminal
36
- ([ how to video] ( https://youtu.be/5AJbWEWwnbY ) ) and typing:
36
+ ([ how- to video] ( https://youtu.be/5AJbWEWwnbY ) ) and typing:
37
37
38
38
```
39
39
chsh -s /bin/bash
@@ -48,17 +48,17 @@ As shown in the version control chapter, Git is a very useful tool for version
48
48
controlling your projects, as well as sharing your work with others.
49
49
50
50
** Windows:** To install
51
- Git on Windows go to < https://git-scm.com/download/win > and download the windows
52
- version of git . Once the download has finished, run the installer and accept
51
+ Git on Windows, go to < https://git-scm.com/download/win > and download the Windows
52
+ version of Git . Once the download has finished, run the installer and accept
53
53
the default configuration for all pages.
54
54
55
- ** MacOS:** To install Git on Mac OS open the terminal and type the following command:
55
+ ** MacOS:** To install Git on Mac OS, open the terminal and type the following command:
56
56
57
57
```
58
58
xcode-select --install
59
59
```
60
60
61
- ** Ubuntu:** To install Git on Ubuntu open the terminal and type the following commands:
61
+ ** Ubuntu:** To install Git on Ubuntu, open the terminal and type the following commands:
62
62
63
63
```
64
64
sudo apt update
@@ -68,7 +68,7 @@ sudo apt install git
68
68
69
69
### Miniconda
70
70
71
- To run Jupyter notebooks on our computers we will need to install a program
71
+ To run Jupyter notebooks on our computers, we will need to install a program
72
72
similar to the one we used as our web-based platform. One such program is
73
73
JupyterLab. But JupyterLab relies on Python; we can install this via
74
74
the [ miniconda Python package distribution] ( https://docs.conda.io/en/latest/miniconda.html ) .
@@ -78,7 +78,7 @@ the [Python 3.8 64-bit version from here](https://repo.anaconda.com/miniconda/Mi
78
78
Once the download has finished, run the installer and accept the default
79
79
configuration for all pages. After installation, you can open the Anaconda Prompt
80
80
by opening the Start Menu and searching for the program called
81
- "Anaconda Prompt (miniconda3)". When this opens you will see a prompt similar to
81
+ "Anaconda Prompt (miniconda3)". When this opens, you will see a prompt similar to
82
82
` (base) C:\Users\your_name ` .
83
83
84
84
** MacOS:** To install miniconda on MacOS, download
@@ -95,7 +95,7 @@ commands:
95
95
bash path/to/Miniconda3-latest-Linux-x86_64.sh
96
96
```
97
97
98
- > Note: most often this file is downloaded to the Downloads directory, and thus the command will look like this:
98
+ > Note: most often, this file is downloaded to the Downloads directory, and thus the command will look like this:
99
99
> ```
100
100
> bash Downloads/Miniconda3-latest-Linux-x86_64.sh
101
101
> ```
@@ -104,7 +104,7 @@ bash path/to/Miniconda3-latest-Linux-x86_64.sh
104
104
The instructions for the installation will then appear:
105
105
106
106
(1) Press Enter.
107
- (2) Once the licence agreement shows, you can press space scroll down, or press `q` to skip reading it.
107
+ (2) Once the licence agreement shows, you can press space scroll down or press `q` to skip reading it.
108
108
(3) Type `yes` and press enter to accept the licence agreement.
109
109
(4) Press enter to accept the default installation location.
110
110
(5) Type `yes` and press enter to instruct the installer to run `conda init`, which makes `conda` available from the terminal/shell.
@@ -207,7 +207,7 @@ tinytex::tlmgr_install(c("eurosym",
207
207
This section will help you
208
208
save your work from the JupyterHub web-based platform to your own computer.
209
209
210
- First in JupyterHub, open a terminal by clicking "terminal" in the Launcher tab.
210
+ First, in JupyterHub, open a terminal by clicking "terminal" in the Launcher tab.
211
211
Next, type the following in the terminal to create a
212
212
compressed `.zip` archive for the work you are interested in downloading:
213
213
0 commit comments