installing packages not on CRAN

Trying to install package dggridR that was recently removed from CRAN. I have tried using the CRAN archives and "install_URL" but was getting this error:
"Error: (converted from warning) package 'rgdal' was built under R version 3.6.3
Execution halted
ERROR: lazy loading failed for package 'dggridR'

  • removing '...win-library/3.6/dggridR'
    Error: Failed to install 'unknown package' from URL:
    (converted from warning) installation of package ‘...dggridR_2.0.3.tar.gz’ had non-zero exit status"

Any suggestions for how I can install this package?

For archived :package:, take a look at remotes::install_version

If you keep getting this error message with install_version(), try runing this command before installing the package.

Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true")

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.