install_greta_deps {greta} | R Documentation |
Install Python dependencies for greta
Description
This is a helper function to install Python dependencies needed. This includes Tensorflow version 1.14.0, Tensorflow Probability 0.7.0, and numpy version 1.16.4. These Python modules will be installed into a virtual or conda environment, named "greta-env". Note that "virtualenv" is not available on Windows.
Usage
install_greta_deps(
method = c("auto", "virtualenv", "conda"),
conda = "auto",
timeout = 5,
...
)
reinstall_greta_deps(
method = c("auto", "virtualenv", "conda"),
conda = "auto",
timeout = 5
)
Arguments
method |
Installation method ("virtualenv" or "conda") |
conda |
The path to a |
timeout |
maximum time in minutes until the installation for each installation component times out and exits. Default is 5 minutes per installation component. |
... |
Optional arguments, reserved for future expansion. |
Note
This will automatically install Miniconda (a minimal version of the Anaconda scientific software management system), create a 'conda' environment for greta named 'greta-env' with required python and python package versions, and forcibly switch over to using that conda environment.
If you don't want to use conda or the "greta-env" conda environment, you
can install these specific versions of tensorflow (version 1.14.0), and
tensorflow-probability (version 0.7.0), and ensure that the python
environment that is initialised in this R session has these versions
installed. This is now always straightforward, so we recommend installing
the python packages using install_greta_deps()
for most users.
Examples
## Not run:
install_greta_deps()
## End(Not run)
## Not run:
# to help troubleshoot your greta installation, this can help resolve some
# issues with installing greta dependencies
reinstall_greta_deps()
## End(Not run)