Unable to install Quandl under R version 3.2?

白昼怎懂夜的黑 提交于 2019-12-14 04:18:28

问题


I'm running R version 3.2 because it is a requirement for ggplots2.

However it seems that I cannot install package "Quandl". I'm getting the following warnings:

No package 'libcurl' found
Using PKG_CFLAGS=
Using PKG_LIBS=-lcurl
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because libcurl was not found. Try installing:
 * deb: libcurl4-openssl-dev (Debian, Ubuntu, etc)

and some others. The result is:

Warning in install.packages :
  installation of package ‘Quandl’ had non-zero exit status

My assumption is that the newer R version is not yet supported by the required dependency.

What should I do?


回答1:


You need to install libcurl4-openssl-dev operating system package. You can use this command on Debian-based OS (including Ubuntu and Mint):

sudo apt-get install libcurl4-openssl-dev


来源:https://stackoverflow.com/questions/34579938/unable-to-install-quandl-under-r-version-3-2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!