Skip to content
Snippets Groups Projects
Commit e1feca3e authored by Raniere Silva's avatar Raniere Silva
Browse files

Improve Setup instructions for R

Previous instructions fail due trying to use CRAN without setting a mirror.

Close swcarpentry/lesson-example#208
parent 0f80101e
Branches
Tags v9.5.0
No related merge requests found
......@@ -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`)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment