| gd_install | R Documentation |
This function installs the latest numpy, earthengine-api, and
geedim modules. The default uses pip for package installation. You can
configure custom environments with pip=FALSE and additional arguments
that are passed to reticulate::py_install().
gd_install(pip = TRUE, system = FALSE, force = FALSE, ...)
pip |
Use |
system |
Use a |
force |
Force update (uninstall/reinstall) and ignore existing installed packages? Default: |
... |
Additional arguments passed to |
This function provides a basic wrapper around reticulate::py_install(), except it defaults to using the Python package manager pip. If you specify method="virtualenv" or method="conda then the default envname is "r-reticulate" unless you set it to something else. If an environment of that name does not exist it is created.
NULL, or try-error (invisibly) on R code execution error.
## Not run:
# install with pip (with reticulate)
gd_install()
# use virtual environment with default name "r-reticulate"
gd_install(method = "virtualenv")
# use "conda" environment named "foo"
gd_install(method = "conda", envname = "foo")
# install with pip (system() call)
gd_install(system = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.