r install_github("timelyportfolio/sunburstR") 代理和手动安装

r install_github("timelyportfolio/sunburstR") proxy and manual install

会话信息() R 版本 3.2.2 (2015-08-14) 平台:i386-w64-mingw32/i386(32 位) 运行 下:Windows XP (build 2600) Service Pack 3

我在直接从 github 安装此软件包时遇到问题。错误如下。也许这是解决方案 Solution. How to install_github when there is a proxy 但我在哪里可以找到相关的输入 url="18.91.12.23", port=8080, username="user",password="password"。无论如何我都不是 R 方面的专家,但这个安装让我很受不了。

.libPaths("U:/Packages")
 library(devtools)
devtools::install_github("timelyportfolio/sunburstR")
Downloading GitHub repo timelyportfolio/sunburstR@master
Error in curl::curl_fetch_memory(url, handle = handle) : 
Couldn't resolve host name

然后我尝试下载 zip 文件并使用手动 R studio 安装,但这也不起作用。

install.packages("~/Packages/sunburstR-master.zip", repos = NULL)
Installing package into ‘U:/Packages’
(as ‘lib’ is unspecified)
library(sunburstR)
Error in library(sunburstR) : there is no package called ‘sunburstR’

文件夹中的文件和 zip 文件在我 运行 安装包后解压缩文件夹,但它不起作用。

如有任何帮助,我们将不胜感激。

因为您已经安装了 devtools,请尝试使用 devtools::install 从源安装。

试试这个:

library(devtools)
install("~/Packages/sunburstR-master.zip")

并查看安装是否有效。否则,您可以解压压缩包获取源文件,然后重试

library(devtools)
install("<Path_to_sunburstR>")

此外,由于您正在开发 Windows,请确保您已安装 Rtools