gd_install {rgeedim} | R Documentation |
Install Required Python Modules
Description
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()
.
Usage
gd_install(pip = TRUE, system = FALSE, force = FALSE, ...)
Arguments
pip |
Use |
system |
Use a |
force |
Force update (uninstall/reinstall) and ignore existing installed packages? Default: |
... |
Additional arguments passed to |
Details
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.
Value
NULL
, or try-error
(invisibly) on R code execution error.
Examples
## 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)