首页 > 代码库 > Error in library(e1071) : there is no package called 'e1071'

Error in library(e1071) : there is no package called 'e1071'

学习R语言时,在安装包的时候都是正常的,但当导入包的时候通常会出现下面的情况:

libaray(e1071)

Error in library(e1071) : there is no package called ‘e1071’


网上有些说是包没有装全,需要安装依赖包 , dependencies=TRUE, 但通常这个依旧解决不了问题。


其实大多数情况下R都安装在windows平台,所以我们应该想到是不是文件的执行权限问题。

当我们用管理员身份运行R工具时,就会发现上面的问题消失啦!


PS:每次运行R都要右击鼠标是不是很烦? 这里有个一劳永逸的办法:

  右击R图标 -> 选择属性-兼容性选项卡 -> 勾选"以管理员身份运行此程序"


是不是很简单?!

本文出自 “DTlore的后花园” 博客,请务必保留此出处http://dtlore.blog.51cto.com/3288722/1935173

Error in library(e1071) : there is no package called 'e1071'