首页 > 代码库 > Win7中(RHDF5)bioConduct安装技巧及installed directory not writable问题解决
Win7中(RHDF5)bioConduct安装技巧及installed directory not writable问题解决
为了在R中读写HDF5文件,需要安装rhdf5包。常规方法是在R中运行:
> source("http://bioconductor.org/biocLite.R") > biocLite("rhdf5")
但是这样会自动连国外的服务器下载安装所需的软件包。而我的改进方法如下:
1、用浏览器访问http://bioconductor.org/biocLite.R,将文件保存到本地
2、编辑本地的biocLite.R, 将第三行和第八行的注释符去掉,内容改为:
options("repos" = c(CRAN="http://mirror.bjtu.edu.cn/cran")) options("BioC_mirror" = "http://mirrors.ustc.edu.cn/bioc/")这样就会连国内的服务器下载包,速度会比较快。
3、在R中运行
> source("biocLite.R") > biocLite("rhdf5")
即可安装rhdf5包。
另外安装时可能碰到报错:installed directory not writable,cannot update packages...
我的解决办法是以管理员身份启动R运行环境或RStudio,再进行安装。
Win7中(RHDF5)bioConduct安装技巧及installed directory not writable问题解决
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。