Skip to contents

tidydrfrost depends on a few python packages. This function installs these using reticulate::py_install.

Usage

install_tdf_dependencies(method = "auto", conda = "auto")

Arguments

method, conda

Passed into reticulate::py_install()

Details

tidydrfrost currently depends on 'selene', 'sigfig', 'sympy' and 'latex2sympy2'. For added control over the installation of these packages, use reticulate::py_install() directly:

reticulate::py_install(c("selene", "sigfig", "sympy", "latex2sympy2"))

Or use pip:

pip install selene sigfig sympy latex2sympy2

Examples

if (FALSE) {
  install_tdf_dependencies()
}