installFoundDepends(tools)
installFoundDepends()所属R语言包:tools
A function to install unresolved dependencies
安装未解决的依赖函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function will take the Found element of a pkgDependsList object and attempt to install all of the listed packages from the specified repositories.
此功能将采取的Found对象,并尝试从指定仓库安装所有列出的包pkgDependsList元素。
用法----------Usage----------
installFoundDepends(depPkgList, ...)
参数----------Arguments----------
参数:depPkgList
A Found element from a pkgDependsList object
一个FoundpkgDependsList对象元素
参数:...
Arguments to pass on to install.packages
参数传递install.packages
Details
详情----------Details----------
This function takes as input the Found list from a pkgDependsList object. This list will have element names being URLs corresponding to repositories and the elements will be vectors of package names. For each element, install.packages is called for that URL to install all packages listed in the vector.
这个函数作为输入FoundpkgDependsList对象名单。这份名单将有网址库和元素对应的元素名称将包名的向量。对于每个元素,install.packages被称为该URL安装在向量中列出的所有软件包。
作者(S)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
pkgDepends, install.packages
pkgDepends,install.packages
举例----------Examples----------
## Set up a temporary directory to install packages to[#设置一个临时目录,安装包]
tmp <- tempfile()
dir.create(tmp)
pDL <- pkgDepends("tools",local=FALSE)
installFoundDepends(pDL$Found, destdir=tmp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|