From 8f04d48e0035964ef7fd172fc879b3bf3871768f Mon Sep 17 00:00:00 2001 From: "Sean J. Taylor" Date: Tue, 18 Dec 2018 22:43:12 -0800 Subject: [PATCH] Update documentation to suggest devtools --- docs/_docs/installation.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/_docs/installation.md b/docs/_docs/installation.md index c546219..376ccd1 100644 --- a/docs/_docs/installation.md +++ b/docs/_docs/installation.md @@ -16,7 +16,14 @@ 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) so you can use `install.packages`: +Due to [an upstream issue](https://github.com/r-lib/pkgbuild/issues/54) in pkgbuild, we recommend that you use `devtools` to install Prophet. This is currently the only way to get the latest release. We hope to resolve this in the near future. + +``` +# R +> devtools::install_github('facebook/prophet', subdir='R') +``` + +Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) and you can continue to use `install.packages` if you are ok with using an earlier release: ``` # R