2

高拉夫·潘迪

我使用了命令

Sys.setenv(http_proxy="http://myusername:pswd@host:port")

起初它起作用了。但是在终端中重新启动它时,它显示了以下错误。-

 cannot open: HTTP status was '407 Proxy Authentication Required

如何解决这个问题。帮助,,,

4

1 回答 1

4

您为运行 R 的进程设置环境。当 R 的实例退出时,进程消失,环境消失。

您不能为父进程设置环境。

将这些命令放入/etc/profile~/.bash_profile代替:

export http_proxy
http_proxy=http://myusername:pswd@host:port

或全部在一行上(对于bash):

export http_proxy=http://myusername:pswd@host:port

或者在开始之前在 shell 中运行命令R

于 2013-03-17T16:11:05.420 回答