Skip to content

Commit

Permalink
Merge pull request #906 from datacarpentry/doujouDC-patch-1
Browse files Browse the repository at this point in the history
remove mentions of lubridate from setup instructions
  • Loading branch information
doujouDC authored Sep 24, 2024
2 parents 34902f4 + d6c18b9 commit 4e144b4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ While this may sound scary, it is **far more common** to run into issues due to

### Install required R packages

During the course we will need a number of R packages. Packages contain useful R code written by other people. We will use the packages `tidyverse`, `lubridate`, and `ratdat`.
During the course we will need a number of R packages. Packages contain useful R code written by other people. We will use the packages `tidyverse`, and `ratdat`.

To try to install these packages, open RStudio and copy and paste the following command into the console window (look for a blinking cursor on the bottom left), then press the <kbd>Enter</kbd> (Windows and Linux) or <kbd>Return</kbd> (MacOS) to execute the command.

```r
install.packages(c("tidyverse", "lubridate", "ratdat"))
install.packages(c("tidyverse", "ratdat"))
```

Alternatively, you can install the packages using RStudio's graphical user interface by going to `Tools > Install Packages` and typing the names of the packages separated by a comma.
Expand All @@ -105,7 +105,6 @@ When the installation has finished, you can try to load the packages by pasting

```r
library(tidyverse)
library(lubridate)
library(ratdat)
```

Expand Down

0 comments on commit 4e144b4

Please sign in to comment.