4

I am trying to run a simple command in R using the Quandl package. I am getting the following error when I run though:

Error in loadNamespace(name) : there is no package called ‘curl’ 

The code I am running is:

library(Quandl) library(xts) library(zoo) Quandl.auth("login_token") mydata = Quandl("FRED/GDP") 

It is probably something dumb, but I can't seem to find the answer. Any help is appreciated, thanks!

1
  • 3
    You need to install curl: install.packages("curl") Commented Aug 26, 2015 at 20:29

1 Answer 1

1
install.packages("curl") 

I faced the same issue, and saw the comment here Cannot install devtools package after upgrading R

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.