我已使用在线转换器将在Windows中创建的package_name.zip文件转换为package_name.tar.gz文件。我按照以下步骤来构建和安装包:
R CMD build brocolors
(将brocolors替换为您的包目录的名称,希望它也是您的包的名称。)
你会看到类似这样的东西
$ R CMD build package_name
* checking for file 'package_name/DESCRIPTION' ... OK
* preparing 'brocolors':
* checking DESCRIPTION meta-information ... OK
* checking for LF line-endings in source and make files
* checking for empty or unneeded directories
* creating default NAMESPACE file
* building 'brocolors_0.1.tar.gz'
R CMD INSTALL package_name_1.2.tar.gz
这正是我所做的(glyCount是.tar.gz文件所在目录的名称。
R CMD build glyCount
* checking for file ‘glyCount/DESCRIPTION’ ... OK
* preparing ‘glyCount’:
* checking DESCRIPTION meta-information ... OK
Warning in file(con, "r") :
cannot open file 'man': No such file or directory
ERROR
computing Rd index failed:cannot open the connection
我不明白为什么包的构建不起作用。是因为包已经在windows中创建了吗?
包目录中没有名为man的文件。创建包时,此文件是否仅在linux中创建?
由于