You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
R
install.packages("ctv")
library(ctv)
install.views("Econometrics")
I was faced with the error.
Error in url(paste(contriburl[i], "Views.rds", sep = "/"), open = "rb") :
cannot open connection
In addition: Warning message:
In url(paste(contriburl[i], "Views.rds", sep = "/"), open = "rb") :
URL 'https://mran.revolutionanalytics.com/snapshot/2016-07-01/src/contrib/Views.rds': status was 'Problem with the SSL CA cert (path? access rights?)'
The issue was [reported here](https://social.msdn.microsoft.com/Forums/en-US/20c2667c-1518-4e74-8ba6-0d8ebb7da9f0/installing-views?forum=ropen&prof=required)
The solution is to modify the command to look like this:
``` R```
Sys.setenv(CURL_CA_BUNDLE = "/usr/lib64/microsoft-r/3.3/lib64/R/lib/microsoft-r-cacert.pem")
install.packages("ctv")
library(ctv)
install.views("Econometrics")
The text was updated successfully, but these errors were encountered:
An example:
R
install.packages("ctv")
library(ctv)
install.views("Econometrics")
The text was updated successfully, but these errors were encountered: