Change R install instructions from CRAN to github

This commit is contained in:
Ben Letham 2020-04-27 18:11:16 -07:00
parent 309035cb97
commit 59e374b1ad
2 changed files with 4 additions and 6 deletions

View file

@ -21,11 +21,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`. For OSX, be sure to specify a source install:
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github:
```
# R
> install.packages('prophet', type="source")
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")
```
After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api)

View file

@ -14,13 +14,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat
<a href="#r"></a>
## Installation in R
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:
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github:
```
# R
> install.packages('prophet', type="source")
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")
```
After installation, you can [get started!](quick_start.html#r-api)