0
Hello, good afternoon!
I am trying to install the Rstem package on R, through a tar.gz file, since the package was discontinued from CRAN. I am using the following routine, but error installation, what can I do to fix this error?
install.Packages("C: Rstem_0.4-1.tar.gz project", Repos = NULL, type = "source") Installing package into C:/Users/Ingle/Onedrive/Documents/R/win-library/3.5' (as ːlib' is unspecified) Warning: invalid package 'C:/project/Rstem_0.4-1.tar.gz' Error: ERROR: no specified Packages In R CMD INSTALL Warning in install.Packages : installation of package ːC:/project/Rstem_0.4-1.tar.gz' had non-zero Exit status
Hello @Ingled, in order to play your question, provide the location you downloaded the file
tar.gz
, because the error says the package is invalid. Still, provide the code you used to install the package.– Guilherme Parreira
This is Windows:
"C:\projeto\Rstem_0.4-1.tar.gz"
. Try with/
:"C:/projeto/Rstem_0.4-1.tar.gz"
.– Rui Barradas