有人可以帮我找出解决此错误的方法吗?


  > * installing *source* package ‘RCurl’ ...
    > ** package ‘RCurl’ successfully unpacked and MD5 sums checked checking for curl-config... no Cannot find curl-config ERROR: configuration
    > failed for package ‘RCurl’
    > * removing ‘/home/juanchi/R/x86_64-pc-linux-gnu-library/3.0/RCurl’ Warning in install.packages :   installation of package ‘RCurl’ had
    > non-zero exit status ERROR: dependency ‘RCurl’ is not available for
    > package ‘httr’
    > * removing ‘/home/juanchi/R/x86_64-pc-linux-gnu-library/3.0/httr’ Warning in install.packages :   installation of package ‘httr’ had
    > non-zero exit status ERROR: dependencies ‘httr’, ‘RCurl’ are not
    > available for package ‘devtools’
    > * removing ‘/home/juanchi/R/x86_64-pc-linux-gnu-library/3.0/devtools’ Warning in install.packages :   installation of package ‘devtools’ had
    > non-zero exit status
    >
    > The downloaded source packages are in

打印( session 信息(),语言环境=假)
R version 3.0.2 (2013-09-25) Platform: x86_64-pc-linux-gnu (64-bit)

attached base packages: [1] stats     graphics  grDevices utils     datasets  methods   base

loaded via a namespace (and not attached): [1] tools_3.0.2
    >   ‘/tmp/RtmpDMZcfn/downloaded_packages’

最佳答案

相关线路:

> ** package ‘RCurl’ successfully unpacked and MD5 sums checked checking for curl-config... no Cannot find curl-config ERROR: configuration
    > failed for package ‘RCurl’

您需要为 libcurl 安装 RCurl(devtools 依赖于哪个)。

http://www.omegahat.org/RCurl/FAQ.html ,假设您使用 apt-get 使用 Linux 风格:
sudo apt-get install libcurl4-gnutls-dev

应该为您提供 RCurl 所需的库。

10-07 15:08