I have an R package that I would like to install from here, and as instructed by the authors, the way we should install it is as follows:
install.packages("uba_0.7.7.tar.gz",repos=NULL,dependencies=T)
Thsi gives me the following error in R studio:
Warning: invalid package 'uba_0.7.7.tar.gz' Error: ERROR: no packages specified In R CMD INSTALL Warning in install.packages : installation of package ‘uba_0.7.7.tar.gz’ had non-zero exit status
There is a similar question on stack overflow. I tried doing as such after downloading the .tar.gz file:
install.packages("C:/Users/96171/Downloads/uba_0.7.7.tar.gz",repos=NULL,type="source")
But still having an error:
ERROR: dependency 'Hmisc' is not available for package 'uba' * removing 'C:/Users/96171/Documents/R/win-library/3.5/uba' In R CMD INSTALL Warning in install.packages : installation of package ‘C:/Users/96171/Downloads/uba_0.7.7.tar.gz’ had non-zero exit status
However I tried:
install.packages("Hmisc")
as well as:
install.packages("Hmisc", dependencies = T)
But both did nothing. It is also important to note that I have RTools installed