从本地 zip 文件问题安装情绪包

sentiment package installation from local zip file issue

我正在尝试找到一种在 R 中安装情绪包以执行情绪分析的方法。 我搜索了所有 d 存储库,但它不是 available.I 我正在尝试从本地目录手动安装 sentiment_0.2.tar 文件,但我得到这个:

Error in read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) : cannot open the connection In addition: Warning messages: 1: In unzip(zipname, exdir = dest) : error 1 in extracting from zip file 2: In read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) : cannot open compressed file 'sentiment_0.2.tar.gz/DESCRIPTION', probable reason 'No such file or directory'

我该如何解决这个问题?任何宝贵的建议都会有很大的帮助。

请尝试:

install.packages(file.choose(), repos = NULL, type="source")

这应该允许您 select 文件本身并随后安装包。另外,请注意包版本可能与您机器上当前的 R 版本不兼容。

谢谢!