install_bitbucket 失败并出现 404 错误
install_bitbucket fails with 404 error
我想从 bitbucket 安装这个包:https://bitbucket.org/mkuhn/parallelrandomforest/
但是如果我 运行 install_bitbucket
就会发生这种情况
> devtools::install_bitbucket("mkuhn/parallelrandomforest")
Downloading bitbucket repo mkuhn/parallelrandomforest@master
Error in download(dest, src, auth) : client error: (404) Not Found
如果我 运行 来自 ?install_bitbucket
的命令即 install_bitbucket("dannavarro/lsr-package")
它完美地工作。
任何想法
R version 3.1.2 (2014-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=C LC_COLLATE=C LC_MONETARY=C LC_MESSAGES=C
[7] LC_PAPER=C LC_NAME=C LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=C LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] RCurl_1.95-4.5 bitops_1.0-6 devtools_1.7.0 httr_0.6.1 stringr_0.6.2 tools_3.1.2
通常master分支应该叫master
,但他们设法叫它default
。
devtools::install_bitbucket("mkuhn/parallelrandomforest@default")
我想从 bitbucket 安装这个包:https://bitbucket.org/mkuhn/parallelrandomforest/
但是如果我 运行 install_bitbucket
> devtools::install_bitbucket("mkuhn/parallelrandomforest")
Downloading bitbucket repo mkuhn/parallelrandomforest@master
Error in download(dest, src, auth) : client error: (404) Not Found
如果我 运行 来自 ?install_bitbucket
的命令即 install_bitbucket("dannavarro/lsr-package")
它完美地工作。
任何想法
R version 3.1.2 (2014-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=C LC_COLLATE=C LC_MONETARY=C LC_MESSAGES=C
[7] LC_PAPER=C LC_NAME=C LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=C LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] RCurl_1.95-4.5 bitops_1.0-6 devtools_1.7.0 httr_0.6.1 stringr_0.6.2 tools_3.1.2
通常master分支应该叫master
,但他们设法叫它default
。
devtools::install_bitbucket("mkuhn/parallelrandomforest@default")