Hi!
Sorry for the late response, we still need to check wether we can improve the performance there, but I managed to install the mentioned packages by manually installing additional dependencies beforehand.
Solution:
Open “Tools → Terminal” and execute conda install -c conda-forge udunits2 gdal
there, afterwards you will be able to install install.packages("ggVennDiagram")
with no errors.
Detailed explanation:
- there is an error in the output:
installation of package ‘units’ had non-zero exit status
- to get the detailed message one have to pass
keep_outputs
argument:
install.packages("units", keep_outputs=TRUE)
- turned out
libudunits2-dev
is missing, but in this environment it should be installed via conda, otherwise it won’t be discovered: conda install -c conda-forge udunits2
-
sf
package from the dependencies is also failing with gdal-dev
missing dependency, fixing: conda install -c conda-forge gdal
It seems, both packages should be installed by default - will ask the devs to check & update our envs if needed.
Thank you!