Ubuntu 13.04でcurl-configが見つかりません


42

RにパッケージRCurlをインストールしていますが、エラーが発生します

  checking for curl-config... no
  Cannot find curl-config
  ERROR: configuration failed for package ‘RCurl’

Ubuntuにlibcurlをインストールしようとしましたが、いくつかの依存関係がある問題を解決できません

sudo apt-get install libcurl4-gnutls-dev
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libcurl4-gnutls-dev : Depends: libcurl3-gnutls (= 7.29.0-1ubuntu3.1) but 7.29.0-1ubuntu3.2 is to be installed
Depends: libldap2-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

locate curl config 私に何も与えない:

locate curl-config
curl-config
The program 'curl-config' can be found in the following packages:
* libcurl4-gnutls-dev
* libcurl4-nss-dev
* libcurl4-openssl-dev

RCurlのソリューションをいくつか試しましたが、機能しています。この方向で提案したり助けたりできますか。どうもありがとうございます。

編集

Ubuntu Software Centerから(Curl)をインストールしようとすると、同じエラーメッセージが表示されました

パッケージの依存関係を解決できません

このエラーは、必要な追加ソフトウェアパッケージが見つからないか、インストールできないために発生する可能性があります。さらに、同時にインストールすることが許可されていないソフトウェアパッケージ間で競合が発生する可能性があります。

次のパッケージには、満たされていない依存関係があります。

 curl: Depends: libcurl3 (= 7.29.0-1ubuntu3.1) but 7.29.0-1ubuntu3.2 is to be installed
  Depends: zlib1g (>= 1:1.1.4) but 1:1.2.7.dfsg-13ubuntu2 is to be installed

編集済み

sudo aptitude install libcurl4-openssl-dev

The following NEW packages will be installed:
libcurl4-openssl-dev{b} 
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 1,210 kB of archives. After unpacking 2,778 kB will be used.
The following packages have unmet dependencies:
libcurl4-openssl-dev : Depends: libcurl3 (= 7.29.0-1ubuntu3.1) but 7.29.0-1ubuntu3.2 is installed.
                    Depends: libidn11-dev but it is not going to be installed.
                    Depends: libkrb5-dev but it is not going to be installed.
                    Depends: libldap2-dev but it is not going to be installed.
                    Depends: librtmp-dev but it is not going to be installed.
                    Depends: libssl-dev but it is not going to be installed.
 The following actions will resolve these dependencies:
 Keep the following packages at their current version:
 1)     libcurl4-openssl-dev [Not Installed]               

1
で試してみましたapt-get install -fか?
arsaKasra

0はアップグレードされ、0は新しくインストールされ、0は削除され、0はアップグレードされません。
アーシュ

また、まだご覧になっていない場合は、これをご覧ください。GoogleChromeと競合する可能性があります。
arsaKasra

回答:


67

含まれていることがわかった3つのパッケージcurl-config

  1. libcurl4-gnutls-dev
  2. libcurl4-nss-dev
  3. libcurl4-openssl-dev

すべてが同じ機能を持っているようです。これらの最初のものをSynaptic Package Manager経由でインストールした後、CRANからRCurlをインストールできました。

したがって、最初のオプションを選択した場合は、ターミナルボックスを開いて

sudo apt-get install libcurl4-gnutls-dev

それからRに行って

install.packages("RCurl")

5
すみません、あなたの答えはどういう意味ですか?
マットオブライエン14年

3
Rの外、ターミナルボックスでsudo liblcurl4-gnutls-devを実行します。そして、R.内install.packagesは( "RCurl")を使用してRCurlをインストールする
プラキディア

3
フォローしましたが、完璧に機能しました。新しい端末でsudo apt-get install libcurl4-openssl-dev Rコンソールでinstall.packages( "RCurl")
Chitrasen 14年

2
apt-getインストールlibcurl4-gnutls-dev
user2413 14年

1
libcurl4-openssl-devLinux Mint 17.1で私のために働いたのは3番目だけだと付け加えます
MichaelChirico

2

同じ問題を解決するために私がしたことは次のとおりです。

sudo aptitude install libcurl4-openssl-dev

そして、解決策を受け入れるように求められたら、[Y / n / q]

 :
 The following actions will resolve these dependencies:
 Keep the following packages at their current version:
 1)     libcurl4-openssl-dev [Not Installed]      
 :

「n」と答えます。次に、別のアクションが求められたら[Y]と答えます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.