我已经构建了一个新程序包,该程序包托管在GitHub的Derived Table上。
我正在尝试通过devtools :: install_github()安装软件包,但出现了奇怪的错误。帮助吗?
>install_github("kevinwolz/hisafer")
Downloading GitHub repo kevinwolz/hisafer@master
from URL https://api.github.com/repos/kevinwolz/hisafer/zipball/master
Installing hisafer
[在这里,5个软件包的依赖项(dplyr,tidyr,purrr,ggplot2,lubridate)已自动成功安装,但是我省略了文本]
"C:/Users/wolzkevi/DOCUME~1/R/R-34~1.3/bin/x64/R" --no-site-file --no-environ --no-save \
--no-restore --quiet CMD INSTALL \
"C:/Users/wolzkevi/AppData/Local/Temp/Rtmpg5OyD6/devtools28843ed4c0a/kevinwolz-hisafer-bf69883" \
--library="C:/Users/wolzkevi/Documents/R/R-3.4.3/library" --install-tests
* installing *source* package 'hisafer' ...
** R
** inst
** preparing package for lazy loading
Error : '' does not exist in current working directory ('C:/Users/wolzkevi/AppData/Local/Temp/Rtmpg5OyD6/devtools28843ed4c0a/kevinwolz-hisafer-bf69883').
Error : unable to load R code in package 'hisafer'
ERROR: lazy loading failed for package 'hisafer'
* removing 'C:/Users/wolzkevi/Documents/R/R-3.4.3/library/hisafer'
In R CMD INSTALL
Installation failed: Command failed (1)
这里的关键错误似乎是“错误:”在当前工作目录中不存在”。有谁知道为什么会这样?我的软件包的构建/设置方式是否引起问题?当不从GitHub下载时,我可以从源代码安装软件包,这使我相信GitHub流程中发生了一些奇怪的事情。
会议信息:
R version 3.4.3 (2017-11-30)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)
Matrix products: default
locale:
[1] LC_COLLATE=French_France.1252 LC_CTYPE=French_France.1252
[3] LC_MONETARY=French_France.1252 LC_NUMERIC=C
[5] LC_TIME=French_France.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] devtools_1.13.4
loaded via a namespace (and not attached):
[1] httr_1.3.1 compiler_3.4.3 R6_2.2.2 tools_3.4.3 withr_2.1.1 curl_3.1
[7] memoise_1.1.0 knitr_1.19 git2r_0.21.0 digest_0.6.15
答案 0 :(得分:1)
问题在于,在R/utils.R
中,您尝试从inst/extdata
读取不存在的文件(这是从第36和37行):
INPUT.DEFS <- readr::read_delim(system.file("extdata", "input_defs.txt", package = "hisafer"), "\t", col_types = readr::cols())
OUTPUT.DEFS <- dplyr::arrange(readr::read_delim(system.file("extdata", "output_defs.txt", package = "hisafer"), "\t", col_types = readr::cols()), profile, name)
检查inst/extdata
不会显示input_defs.txt
和output_defs.txt
都没有。
我跑了
devtools::load_all("hisafer/")
这也会给出错误
错误:“”在当前工作目录中不存在
但是允许您显示信息丰富的追溯:
13.stop("'", path, "' does not exist", if (!is_absolute_path(path)) paste0(" in current working directory ('",
getwd(), "')"), ".", call. = FALSE)
12.check_path(path)
11.standardise_path(file)
10.read_delimited(file, tokenizer, col_names = col_names, col_types = col_types,
locale = locale, skip = skip, comment = comment, n_max = n_max,
guess_max = guess_max, progress = progress)
9.readr::read_delim(system.file("extdata", "input_defs.txt", package = "hisafer"),
"\t", col_types = readr::cols()) at utils.R#36
8.eval(exprs[i], envir)
7.eval(exprs[i], envir)
6.source_one(file, envir = envir)
5.source_many(paths, env)
4.force(code)
3.withr_with_dir(file.path(pkg$path), source_many(paths, env))
2.load_code(pkg)
1.devtools::load_all("hisafer/")
回溯中的第9号通知,它不仅显示有问题的代码,而且还有助于显示该文件来自哪个文件以及位于哪一行。
.gitignore
在您的.gitignore
中,有一行
inst/extdata/
inst/extdata/*
,这意味着未跟踪inst/extdata/
中的所有文件和子文件夹,因此,当用户尝试从GitHub安装时,他们没有获得软件包正常运行所需的extdata/
文件。
请注意,即使用户下载了您的存储库并手动添加了input_defs.txt
和output_defs.txt
,由于相同的原因,他们也不会拥有您想要的其他模板目录,因此构建小插图会导致安装错误。