2
2
3
3
## Overview
4
4
5
- Throughout this book, we have assumed that you are working on a web-based platform
6
- (e.g., JupyterHub) that already has Jupyter, R, a number of R packages, and Git set up and ready to use.
5
+ Throughout this book, we have assumed that you are working on a web-based platform,
6
+ such as JupyterHub, which already has Jupyter, R, several R packages, and Git set up and ready to use.
7
7
In this chapter, you'll learn how to install all of that software on your own computer in case
8
8
you don't have a preconfigured JupyterHub available to you.
9
9
@@ -44,8 +44,9 @@ terminal for this to take effect.
44
44
45
45
### Git
46
46
47
- As shown in the version control chapter, Git is a very useful tool for version
48
- controlling your projects, as well as sharing your work with others.
47
+ As shown in Chapter \@ ref(Getting-started-with-version-control), Git is a very useful tool for version
48
+ controlling your projects, as well as sharing your work with others. Here's how to install Git on
49
+ the following operating systems:
49
50
50
51
** Windows:** To install
51
52
Git on Windows, go to < https://git-scm.com/download/win > and download the Windows
@@ -68,9 +69,8 @@ sudo apt install git
68
69
69
70
### Miniconda
70
71
71
- To run Jupyter notebooks on our computers, we will need to install a program
72
- similar to the one we used as our web-based platform. One such program is
73
- JupyterLab. But JupyterLab relies on Python; we can install this via
72
+ To run Jupyter notebooks on our computers, we will need to install a program, such as the
73
+ web-based platform 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 ) .
75
75
76
76
** Windows:** To install miniconda on Windows, download
@@ -142,7 +142,7 @@ conda install -c conda-forge -y r-irkernel
142
142
To improve the experience of using R in JupyterLab, we will add an extension
143
143
that allows us to setup keyboard shortcuts for inserting text.
144
144
By default, this extension creates shortcuts for inserting two of the most common R
145
- operators: `<-` and `%>% `. Type the following in the Anaconda Prompt (Windows)
145
+ operators: `<-` and `|> `. Type the following in the Anaconda Prompt (Windows)
146
146
or terminal (MacOS and Ubuntu) and press enter:
147
147
148
148
```
0 commit comments