【发布时间】:2019-01-26 04:57:49
【问题描述】:
我在 Ubuntu 18.04 上运行 RStudio。当我想从 GitHub 加载 this data 时
d <- read.csv("https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv")
我收到以下错误消息。
Error in file(file, "rt") : cannot open the connection to 'https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv'
In addition: Warning message:
In file(file, "rt") :
URL 'https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv': status was 'Problem with the SSL CA cert (path? access rights?)'
然而,当我在终端中运行相同的命令时,它可以正常工作,没有任何错误。这个怎么可能?我该如何解决?
【问题讨论】:
标签: r github ssl-certificate rstudio