RStudio正在使用通过RStudio脚本安装到user/anaconda3/lib/R/library
中的软件包。为了运行插入符号库,我遇到错误,例如ggplo
t和pillar
的软件包不存在。所以我不得不像这样
install.packages("pillar",
repos = c("http://rstudio.org/_packages",
"http://cran.rstudio.com"))
但是conda已经有r-ggplot2
和r-pillar
。所有软件包都安装在/Users/bob/anaconda3
环境中的软件包中。
为什么我需要通过RStudio手动安装ggplot2
和pillar
?使用cran.studio和anaconda进行安装有什么区别?