是否可以在不安装依赖项的情况下安装软件包?
运行以下命令时:
install.packages("package",dependencies=FALSE)
如果事先没有安装依赖项,是不是安装包失败了?
我的问题来自这篇文章Install a local R package with dependencies from CRAN mirror.为什么说安装本地软件包而不安装依赖项?
if I set repos=NULL it correctly tries to install the local package
file (as documented),but obvIoUsly it does not find the dependencies
packages.
谢谢!
解决方法
@H_404_38@