2017-11-13 3 views
-3
Error: package or namespace load failed for ‘dplyr’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called ‘R6’ 

답변

1

종속성을 강제 설치해야합니다.

install.packages("dplyr", dependencies=TRUE) 

그래도 문제가 해결되지 않으면 누락 된 패키지를 직접 설치해보십시오.

install.packages("R6", dependencies=TRUE)