From a3bf6c4cdc315cec9cbac8417742a0c513280091 Mon Sep 17 00:00:00 2001 From: Ben Letham Date: Tue, 5 May 2020 14:13:58 -0700 Subject: [PATCH] Switch R install instructions back to CRAN --- README.md | 5 ++--- docs/_docs/installation.md | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a24468e..cf3ad6c 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,10 @@ Prophet is [open source software](https://code.facebook.com/projects/) released ## Installation in R -Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from GitHub: +Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`. ```R -# install.packages("remotes") -remotes::install_github("facebook/prophet", subdir = "R") +install.packages('prophet') ``` 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 d39990d..7f8cfa4 100644 --- a/docs/_docs/installation.md +++ b/docs/_docs/installation.md @@ -14,11 +14,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat -Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github: +Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`. ``` # R -> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3") +> install.packages('prophet') ``` After installation, you can [get started!](quick_start.html#r-api)