简体   繁体   中英

Usage of an Internal R Package Error Message

I am trying to use a company internal r-package and I am getting the following warning message in R-Studio when I want to load the library. So installation works, but when I try to load the library is spits this error: "In fun(libname, pkgname) :"

Does anyone know what the problem is here?

Thanks in advance!

try installing first with install.packages("path to your .zip package file", repos=NULL) Then use library or require . If anything goes wrong with these two steps, there is a problem with the package itself and you should ask its developers for help. EDIT: if your package is on github, you can try:

install.packages("devtools")
library("devtools")
devtools::install_github("your package URL")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM