devtools install_github失败

问题描述 投票:0回答:1

我用尽了一切我能想到的,但仍不能得到这个工作。我认为这与缩进做,因为它工作本地罚款(构建版本)。这里是我的错误:

在read.dcf(路径)错误:实测值续行开始 'dplyr(> = 0.7.8),...' 在记录开始的。

我的代码示例:

Imports: 
    dplyr(>= 0.7.8),
    caret(>= 6.0-81),
    tidyr(>= 0.8.2),
    reshape2(>= 1.4.3),
    plyr(>= 1.8.4),
    magrittr(>= 1.5)

我如何尝试安装:

devtools::install_github("https://github.com/Nelson-Gon/manymodelr")

我没有得到同样的更早,通过限制我的描述为一条直线解决它。提前致谢。

r devtools
1个回答
0
投票

该问题已解决这样也根据工作对我来说:https://github.com/r-lib/devtools/issues/1978

  • 运行devtools::install_github("r-lib/remotes")
  • 重新启动R.
  • 对于预期的包运行devtools::install_github("...")
© www.soinside.com 2019 - 2024. All rights reserved.