MYaseen208
MYaseen208

Reputation: 23908

Installing Pandoc in Windows 7 using R

I'm trying to install Pandoc on Windows 7 from R 3.1.1 using installr package. I used the following code:

library(installr)
install.pandoc()
Error in file(con, "r") : cannot open the connection
In addition: Warning message:
In file(con, "r") : unsupported URL scheme

How can I resolve these errors?

Upvotes: 3

Views: 538

Answers (1)

Tal Galili
Tal Galili

Reputation: 25336

please run:

setInternet2(TRUE)

And then try again.

Upvotes: 1

Related Questions