Prophet: Can't install prophet in R-4.0.0

Created on 24 Apr 2020  路  3Comments  路  Source: facebook/prophet

Prophet isn't listed in the package menu.
So I tried to install using devtools, but no luck?

install_github("facebook/prophet")

Most helpful comment

This is related to #1448, which is that we got dropped from CRAN because we didn't fix our build issues quickly enough. You can install with devtools but need to specify the subdir:

devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")

(the ref here just points to the v0.6 release, removing that will install the latest from the master branch).

All 3 comments

This is related to #1448, which is that we got dropped from CRAN because we didn't fix our build issues quickly enough. You can install with devtools but need to specify the subdir:

devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")

(the ref here just points to the v0.6 release, removing that will install the latest from the master branch).

Ben,
Thanks for following up.

David

On 4/27/20, Ben Letham notifications@github.com wrote:

This is related to #1448, which is that we got dropped from CRAN because we
didn't fix our build issues quickly enough. You can install with devtools
but need to specify the subdir:

devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")

(the ref here just points to the v0.6 release, removing that will install
the latest from the master branch).

--
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
https://github.com/facebook/prophet/issues/1450#issuecomment-620323232

This should be resolved now, prophet is back in CRAN.

Was this page helpful?
0 / 5 - 0 ratings