diff --git a/README.md b/README.md index aaf7c9e..360f17e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/docs/_docs/installation.md b/docs/_docs/installation.md index 2358ee2..d39990d 100644 --- a/docs/_docs/installation.md +++ b/docs/_docs/installation.md @@ -14,13 +14,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`. 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)