mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-28 22:56:38 +00:00
Recommend source install for R
This commit is contained in:
parent
c6b2d2ce30
commit
5df4ea3e96
2 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue