setCondaPackageDir {basilisk.utils} | R Documentation |
Set or unset the directory used to store the cached Conda packages, e.g., tarballs and such. This should be a non-temporary location as other packages may link to its contents.
setCondaPackageDir(loc)
loc |
A string containing a path to the desired directory (that should already exist).
Alternatively |
The previous value of CONDA_PKGS_DIRS
, invisibly.
Aaron Lun
# Setting it to something new: out <- setCondaPackageDir(tempdir()) # Setting it back setCondaPackageDir(out)