By Tingting, 2 January, 2024
Forums

参考CSDN:https://blog.csdn.net/Charlotteoqq/article/details/131838447

结合我在conda环境中安装的4.2.1版本的R语言操作遇到的问题进行总结

一、直接在R语言中安装

有一些R包可以直接被安装,但目前很多R包无法直接安装。

install.packages("package name")

二、BiocManage R安装

install.packages("BiocManager")        #在R中安装BiocManage
BiocManager::install("package name")

三、github安装

这个方法我还没试过,方法参考网址。


library(devtools)
devtools::install_github("包创作者/package name")

library(remotes)
remotes::install_github("包创作者/package name")

四、在conda环境中安装所需要的R包

这个方法个人用起来最顺手,但也存在一些R包无法下载。

conda install -c conda-forge r-包名

PS:使用Python也可以像R语言一样,安装conda,在conda中下载Python的依赖包,使用命令如下:

conda install -c conda-forge python-包名

 

安装conda的步骤笔记如下:https://note.youdao.com/s/A8VPV1sn