我试图在R 3.2.3上安装h2oEnsemble软件包。我有H2O 3.10.0.8包。当我写这些命令时:
library(devtools)
install_github("h2oai/h2o-3/h2o-r/ensemble/h2oEnsemble-package")
我收到了下一个错误:
Downloading GitHub repo h2oai/h2o-3@master
from URL https://api.github.com/repos/h2oai/h2o-3/zipball/master
Installing h2oEnsemble
"C:/Program Files/R/R-3.2.3/bin/x64/R" --no-site-file --no-environ --no-save \
--no-restore --quiet CMD INSTALL \
"C:/Users/User/AppData/Local/Temp/Rtmpi0Q2AV/devtools9583548338a/h2oai-h2o-3-a0a4bbc/h2o-r/ensemble/h2oEnsemble-package" \
--library="C:/Users/User/Documents/R/win-library/3.2" --install-tests
"C:\Program" Ҝ пү«пҜвбп үгваҜҜ© Ё«Ё үҜиҜ©
Ө®¬ ¤®©, ЁбÜ®«пҜ¬®© Üа®Ҹа ¬¬®© Ё«Ё Ü ӨҜвл¬ д ©«®¬.
Error: Command failed (1)
请帮我解决这个问题。感谢。
答案 0 :(得分:3)
看来,你的错误是:
' C:\程序'不被视为内部或外部命令, 可操作程序或批处理文件。错误:命令失败(1)
由于位置路径(C:\ Program Files)路径中的空格字符而发生这种情况。根据文件,
If you want to be able to build packages from sources, we recommend that you choose an
installation path not containing spaces.
请参阅链接:How do I install R for Windows?
尝试更改安装位置。然后它应该工作正常。