Recommend source install for R

This commit is contained in:
Ben Letham 2019-05-21 11:54:11 -07:00
parent c6b2d2ce30
commit 5df4ea3e96
2 changed files with 4 additions and 4 deletions

View file

@ -19,11 +19,11 @@ Prophet is [open source software](https://code.facebook.com/projects/) released
## Installation in R
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`:
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`. For OSX, be sure to specify a source install:
```
# R
> install.packages('prophet')
> install.packages('prophet', type="source")
```
After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api)

View file

@ -16,11 +16,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat
## Installation in R
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) and you can use `install.packages`:
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) and you can use `install.packages`. For OSX, be sure to choose a source install:
```
# R
> install.packages('prophet')
> install.packages('prophet', type="source")
```
After installation, you can [get started!](quick_start.html#r-api)