issues in installing Rstem package

前端 未结 3 1468
醉话见心
醉话见心 2021-01-07 03:25

I was trying to install \"sentiment\" package, which requires the \"Rstem\" package. But the installation process failed due to the following error message,

         


        
相关标签:
3条回答
  • 2021-01-07 03:51

    Download RStem source file from this link: https://cran.r-project.org/src/contrib/Archive/Rstem/

    Then install the package from the downloaded source file to R:

    install.packages("Rstem_0.4-1.tar.gz" , repos=NULL, type="source")
    
    0 讨论(0)
  • 2021-01-07 03:56

    The package can be found here:

    http://cran.cnr.berkeley.edu/web/packages/Rstem/

    Download it and install from Zip file, if you're using the Windows flavour of R.

    0 讨论(0)
  • 2021-01-07 03:57

    First Try to install Rstem by this command:

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

    Then try to install sentiment.

    It worked for ubuntu 12.04

    0 讨论(0)
提交回复
热议问题