0

Cloudera Machine で RStudio を使用して arulesViz ライブラリをインストールしようとしています。そのために私は実行しています:

install.packages("arulesViz", type = "source")

しかし、次のエラーが発生します。

ERROR: configuration failed for package ‘curl’
* removing ‘/home/cloudera/R/x86_64-redhat-linux-gnu-library/3.3/curl’
Warning in install.packages :
  installation of package ‘curl’ had non-zero exit status
ERROR: dependency ‘curl’ is not available for package ‘httr’
* removing ‘/home/cloudera/R/x86_64-redhat-linux-gnu-library/3.3/httr’
Warning in install.packages :
  installation of package ‘httr’ had non-zero exit status
ERROR: dependency ‘httr’ is not available for package ‘plotly’
* removing ‘/home/cloudera/R/x86_64-redhat-linux-gnu-library/3.3/plotly’
Warning in install.packages :
  installation of package ‘plotly’ had non-zero exit status
ERROR: dependency ‘plotly’ is not available for package ‘arulesViz’
* removing ‘/home/cloudera/R/x86_64-redhat-linux-gnu-library/3.3/arulesViz’
Warning in install.packages :
  installation of package ‘arulesViz’ had non-zero exit status

どうすればこの問題を解決できますか?

ありがとう!

4

1 に答える 1

0

パッケージ curl には次の要件があります ( https://cran.r-project.org/web/packages/curl/index.htmlを参照)。

システム要件: libcurl: libcurl-devel (rpm) または libcurl4-openssl-dev (deb)。

ライブラリをインストールすると、おそらく動作します。

于 2016-10-23T17:34:01.560 に答える