我已經把測試R項目在GitHub上(here),並正嘗試使用安裝以下:install_github下載空白master.zip
devtools::install_github('HamiltonBlake/test')
我得到以下輸出:
Installing github repo test/master from HamiltonBlake
Downloading test.zip from https://github.com/HamiltonBlake/test/archive/master.zip
Installing package from C:\Users\Ham\AppData\Local\Temp\RtmpAzTLDT/test.zip
Error: Does not appear to be an R package (no DESCRIPTION)
如果我手動轉到https://github.com/HamiltonBlake/test/archive/master.zip並下載它,它就像預期的那樣是一個帶有server.R和ui.R的壓縮文件夾。
但是,當我轉到我的Temp文件夾時,上面下載的壓縮文件夾包含一個名爲「file236447a6420」的空文件和一個名爲「rs-graphics-3f4820b1-7366-461a-b095-f2106ef72e73」的空文件夾。
我發現這個question使它看起來像是一個等待幾個小時的問題,但不像這個問題,我可以從install_github使用的相同路徑下載和安裝,所以它看起來像github已經更新了主。壓縮。
我在我的電腦上有完整的讀/寫權限,以及最新的devtools和rtools。
要使用'install_github',您不能只在Github上放置任何R代碼。它必須是R包的形式。 –
謝謝,我應該讀[this](http://cran.r-project.org/doc/contrib/Leisch-CreatingPackages.pdf)。 –