Skip to content

Commit

Permalink
Improve Setup instructions for R
Browse files Browse the repository at this point in the history
Previous instructions fail due trying to use CRAN without setting a mirror.

Close #208
  • Loading branch information
rgaiacs committed May 24, 2018
1 parent 0f80101 commit e1feca3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,10 @@ you must install the software described below.
(and this example lesson). The best way to install these packages is to open an R terminal and type:
```
> install.packages('knitr', dependencies = TRUE)
> install.packages('stringr', dependencies = TRUE)
> install.packages('checkpoint', dependencies = TRUE)
> install.packages('knitr', repos = 'https://', dependencies = TRUE)
> install.packages('stringr', repos = 'https://cran.rstudio.com', dependencies = TRUE)
> install.packages('checkpoint', repos = 'https://cran.rstudio.com', dependencies = TRUE)
> install.packages('ggplot2', repos = 'https://cran.rstudio.com', dependencies = TRUE)
```
If you want to run `bin/lesson_check.py` (which is invoked by `make lesson-check`)
Expand Down

0 comments on commit e1feca3

Please sign in to comment.