Rstem package installation on R

Asked

Viewed 118 times

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.

  • This is Windows: "C:\projeto\Rstem_0.4-1.tar.gz". Try with /: "C:/projeto/Rstem_0.4-1.tar.gz".

1 answer

1

You can install directly through the website http://www.omegahat.net/ from the following command:

install.packages("Rstem", repos = "http://www.omegahat.net/R")

Browser other questions tagged

You are not signed in. Login or sign up in order to post.