Reputation: 1
> library(ez)
Error: package or namespace load failed for ‘ez’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called ‘zip’
Upvotes: 0
Views: 965
Reputation: 2867
You have to install the zip package manually and it will work.
install.packages("zip")
install.packages("ez")
library(ez)
Warning message: Paket ‘ez’ wurde unter R Version 3.5.3 erstellt
Should work!
Upvotes: 1