Get a list of installed packages within a conda environment. Generates a requirements.txt file.
conda_export(
name,
save_path = tempfile(fileext = "_requirements.txt"),
preview = FALSE,
verbose = TRUE,
...
)
https://stackoverflow.com/a/55687210
Name of conda environment.
Path to save the requirements file. If the file ends with .yml or .yaml, a conda-style yaml file will be generated. If the file ends with requirements.txt, a pip-style requirements.txt file will be generated.
Print the requirements file to the R console.
Print messages.
Optional arguments, reserved for future expansion.
Path to requirements file.
if (FALSE) { # \dontrun{
conda_export()
} # }