R - when trying to install package: InternetOpenUr

2019-02-04 15:34发布

Since I've updated both R (to 3.2.2) and RStudio (to 0.99.486) in Win 7, I'm experiencing problems downloading packages.

I'm aware of the questions asked here but neither

setInternet2(TRUE)

nor changing the CRAN mirror helped. The "Tools -> Global Options -> Packages -> "Use Internet Explorer library/proxy for HTTP" was also already unchecked and I made sure that my Firefox uses no proxy.

I tried

setRepositories()

as well as manually installing the package with

install.packages('dplyr', repos='https://cran.uni-muenster.de/')

but I still get the message:

Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  unable to access index for repository https://R-Forge.R-project.org/src/contrib
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  unable to access index for repository https://cran.uni-muenster.de/src/contrib
Installing package into ‘C:/Users/me/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  unable to access index for repository https://cran.uni-muenster.de/src/contrib
Warning in install.packages :
  package ‘dplyr’ is not available (for R version 3.2.2)
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  InternetOpenUrl failed: 'Der Servername oder die Serveradresse konnte nicht verarbeitet werden.'
Warning in install.packages :
  unable to access index for repository https://cran.uni-muenster.de/bin/windows/contrib/3.2

Could anyone please help? Thank you!

4条回答
疯言疯语
2楼-- · 2019-02-04 16:09

I faced a similar problem.

The issue was that the default CRAN server was down temporarily, which is rather unusual!

Worked around the issue by finding a nearby CRAN mirror, then updating the defaults:

options(repos = c(CRAN = "https://cran.ma.imperial.ac.uk/", 
                  CRANextra = "https://mirrors.ebi.ac.uk/CRAN/"))

Then this worked fine:

install.packages("ggplot2")
查看更多
贪生不怕死
3楼-- · 2019-02-04 16:19

IE 10 --> uncheck File-->Work Offline option. IE 11 --> click on "Working Offline" in the Status Bar and it will change to "Working Online".

查看更多
倾城 Initia
4楼-- · 2019-02-04 16:23

I faced a similar problem while installing R packages on win8. It may happen that your "Internet Explorer" browser has connection problems. Change your default browser to "Internet Explorer" and make sure the browser handles http queries without any issues.

查看更多
来,给爷笑一个
5楼-- · 2019-02-04 16:28

The problem might be a failure to handle https properly by the underlying method used by R for downloading files. This can be verified by trying

fname <- tempfile()
download.file("https://cran.uni-muenster.de/", destfile=fname)
file.remove(fname)

If that does not work but replacing https with http does, this most likely means that the method used by R's download.file cannot deal with https at all or fails verifying SSL certificates.

You can try

  • using regular http mirrors instead of https
  • update your CA certificate bundle to allow proper certificate validation
  • setting the default download method to "libcurl" and see if that helps:

    options(download.file.method="libcurl")
    
查看更多
登录 后发表回答