From 5df4ea3e963f475ba5256e04d199b388105cfb71 Mon Sep 17 00:00:00 2001 From: Ben Letham Date: Tue, 21 May 2019 11:54:11 -0700 Subject: [PATCH] Recommend source install for R --- README.md | 4 ++-- docs/_docs/installation.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0114e0b..e79891c 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/docs/_docs/installation.md b/docs/_docs/installation.md index d0147c5..5a2fc79 100644 --- a/docs/_docs/installation.md +++ b/docs/_docs/installation.md @@ -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)