Impossibile trovare curl-config in Ubuntu 13.04


43

Sto installando il pacchetto RCurl in R e ricevo un errore

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

Ho provato a installare libcurl su Ubuntu, ma non risolve il mio problema con alcune dipendenze

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 non mi dà niente:

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

Ho esaminato alcune delle soluzioni RCurl ma funziona. Puoi suggerire o aiutare in questa direzione. Grazie mille.

modificare

quando ho provato a installare (Curl) dal centro software Ubuntu ho ricevuto lo stesso messaggio di cancellazione

Le dipendenze del pacchetto non possono essere risolte

Questo errore potrebbe essere causato da pacchetti software aggiuntivi richiesti mancanti o non installabili. Inoltre, potrebbe esserci un conflitto tra i pacchetti software che non possono essere installati contemporaneamente.

I seguenti pacchetti hanno dipendenze non soddisfatte:

 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

MODIFICATO

sudo aptitude installa 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
L'hai provato con apt-get install -f?
arsaKasra,

0 aggiornati, 0 appena installati, 0 da rimuovere e 0 non aggiornati.
Aashu,

Inoltre, se non lo hai già fatto, dai un'occhiata a questo , dice che potrebbero esserci dei conflitti con Google Chrome.
arsaKasra,

Risposte:


68

I 3 pacchetti che hai trovato per contenere curl-config:

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

Tutti sembrano avere la stessa funzionalità. Ho installato il primo di questi tramite Synaptic Package Manager e sono stato quindi in grado di installare RCurl da CRAN.

Quindi, se si sceglie la prima opzione, aprire una morsettiera e fare

sudo apt-get install libcurl4-gnutls-dev

quindi vai in R e fai

install.packages("RCurl")

5
Mi dispiace, cosa significa esattamente la tua risposta?
Matt O'Brien,

3
fare sudo liblcurl4-gnutls-dev fuori da R, in una scatola terminale. Quindi installa RCurl usando install.packages ("RCurl") in R.
Placidia

3
Ho seguito e ha funzionato perfettamente. In un nuovo terminale sudo apt-get install libcurl4-openssl-dev Nella console R install.packages ("RCurl")
Chitrasen,

2
apt-get install libcurl4-gnutls-dev
user2413

1
Aggiungo che solo il terzo ha libcurl4-openssl-devfunzionato per me su Linux Mint 17.1
MichaelChirico

2

Ecco cosa ho fatto per risolvere lo stesso problema:

sudo aptitude install libcurl4-openssl-dev

E quando viene richiesto di accettare la soluzione, [Y / n / q]

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

rispondi "n". Quindi rispondere [Y] quando viene richiesta un'altra azione.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.