-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor installation #1251
Refactor installation #1251
Conversation
install_keras() is now a thin wrapper around install_tensorflow() extra default packages with version constraints are handled by a stand-alone internal function: extra_default_packages() drop IPython dependancy overhauls .github/workflows/main.yaml
`bquote(.(substitute()())` does not return a call in R 3.6.
Hello, The code that installs tensorflow and keras has been refactored. install.packages("remotes")
remotes::install_github(paste0("rstudio/", c("reticulate", "tensorflow", "keras")))
reticulate::install_miniconda() # skip this if you want to self-install conda or use venv
keras::install_keras() Please let us know if after updating you are still encountering installation issues: closes: #1244 related: #1154 rsconnect issue, tf missing on deployed shiny app |
This PR refactors
install_keras()
and related CI tests.Installation:
keras::install_keras()
andtensorflow::install_tensorflow()
.install_keras()
is now a mostly thin wrapper aroundinstall_tensorflow()
that also pulls some additional python packages.install_tensorflow()
will pull the latest available patch release (e.g., "2.4" now pulls "2.4.2", previously it would pull "2.4.0"CI:
related: rstudio/tensorflow#476