R packages: RCurl and curl packages install failure on Linux

孤街浪徒 提交于 2019-12-05 10:33:47
J_F

That looks like that you have different versions of libcurl. One approch could be the following one (for your console):

wget https://cran.r-project.org/src/contrib/curl_0.9.7.tar.gz
R CMD INSTALL curl_0.9.7.tar.gz --no-test-load
ldd /home/majaidi/R/x86_64-redhat-linux-gnu-library/3.1/curl/libs/curl.so

Then you can use ldd libcurl.so to find all dependencies and shared libraries to this. Perhaps you can find some errors and/or you have to create a new LD_LIBRARY_PATH.

Good Luck!
J_F

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