Não foi possível encontrar o curl-config no Ubuntu 13.04


42

Estou instalando o pacote RCurl no R e recebendo um erro

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

Eu tentei instalar o libcurl no Ubuntu, mas isso não resolve o meu problema, tenho algumas dependências

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 não me dá nada:

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

Passei por algumas das soluções RCurl, mas está funcionando. Você pode sugerir ou ajudar nessa direção. Muito obrigado.

Editar

quando eu tentei instalar (Curl) do Ubuntu Software center recebi a mesma mensagem de erro

As dependências do pacote não podem ser resolvidas

Este erro pode ser causado por pacotes de software adicionais necessários que estão ausentes ou não são instaláveis. Além disso, pode haver um conflito entre pacotes de software que não podem ser instalados ao mesmo tempo.

Os seguintes pacotes têm dependências não atendidas:

 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

EDITADO

Instalação do sudo aptitude 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
Você já experimentou apt-get install -f?
ArsaKasra 16/10

0 atualizado, 0 recém-instalado, 0 para remover e 0 não atualizado.
Aashu

Além disso, se você ainda não o fez, dê uma olhada nisso , pois pode haver alguns conflitos com o Google Chrome.
ArsaKasra

Respostas:


67

Os 3 pacotes que você encontrou para conter curl-config:

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

Todos parecem ter a mesma funcionalidade. Instalei o primeiro deles através do Synaptic Package Manager e, em seguida, consegui instalar o RCurl a partir do CRAN.

Portanto, se você escolher a primeira opção, abra uma caixa de terminais e faça

sudo apt-get install libcurl4-gnutls-dev

então entre no R e faça

install.packages("RCurl")

5
Sinto muito, o que exatamente sua resposta significa?
Matt O'Brien

3
faça sudo liblcurl4-gnutls-dev fora de R, em uma caixa de terminais. Em seguida, instale o RCurl usando install.packages ("RCurl") no R.
Placidia

3
Eu segui e funcionou perfeitamente. Em um novo terminal, sudo apt-get install libcurl4-openssl-dev No console R, install.packages ("RCurl")
Chitrasen

2
O apt-get install libcurl4-gnutls-dev
user2413

1
Vou acrescentar que apenas a terceira libcurl4-openssl-devtrabalhou para mim em Linux Mint 17.1
MichaelChirico

2

Aqui está o que eu fiz para resolver o mesmo problema:

sudo aptitude install libcurl4-openssl-dev

E quando solicitado a aceitar a solução, [S / n / q]

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

responda "n". Em seguida, responda [Y] quando outra ação for solicitada.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.