ncss-tech / soilReports

An R package that assists with the setup and operation of a collection of soil data summary, comparison, and evaluation reports. These reports are primarily used by USDA-NRCS soil scientists in both initial and update mapping.
15 stars 5 forks source link

aqp/soilDB/sharpshootR/soilReports issues with shift to devtools 2.x #94

Closed dylanbeaudette closed 5 years ago

dylanbeaudette commented 6 years ago

Recently folks have been noticing warnings / errors when trying to install aqp-family functions from GitHub:

There were several issues contributing to this problem:

  1. version discrepancies: devTools 1.x vs. 2.x: 2.x attempts to use RTools
  2. bogus white space on last line in .Rprofile breaks readLines (why?)
  3. install_github is now provided by the remotes package, complete with new argument names

The fix:

Installation of the aqp-family of packages from GitHub must now be done like this:

remotes::install_github("ncss-tech/soilDB", dependencies=FALSE, upgrade=FALSE, build=FALSE)

TODO: