mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-25 22:26:34 +00:00
Update documentation to suggest devtools
This commit is contained in:
parent
637cd74d94
commit
8f04d48e00
1 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue