Skip to content

Commit afbd4e6

Browse files
authored
Modify R installation command in README
Updated R package installation command to specify CRAN repository.
1 parent 346e379 commit afbd4e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ python -m pip install -r requirements.txt
2525
You will also need a working R installation with `reticulate` and `irkernel` installed.
2626
This command should do the trick:
2727
```
28-
$ R -e 'install.packages(c("reticulate", "IRkernel")); IRkernel::installspec()'
28+
$ R -e 'options(repos=c(CRAN="http://cran.r-project.org")); install.packages(c("reticulate", "IRkernel")); IRkernel::installspec()'
2929
```
3030

3131
# Building tutorials

0 commit comments

Comments
 (0)