Reputation: 1
Error in system(paste(MAKE, p1(paste("-f", shQuote(makefiles))), "compilers"), : 'make' not found
Does anyone know how to solve this, I need to solve this for my study
I want to install this package for my study with PDSI (Palmer Drought Severity Index)
Upvotes: 0
Views: 1367
Reputation: 8166
You can install the scPDSI
package using the following code
install.packages("https://cran.r-project.org/src/contrib/Archive/scPDSI/scPDSI_0.1.3.tar.gz",
repo=NULL, type="source")
Upvotes: 0