Ubuntu 13.04'te curl-config bulunamıyor


42

RCurl paketini R içine yükleyip bir hata alıyorum

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

Ubuntu'ya libcurl kurmaya çalıştım, fakat sorunumu çözmüyor bazı bağımlılıkları var

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 bana hiçbir şey vermez:

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 çözümünün bazılarından geçtim ama çalışıyor. Bu yönde önerebilir veya yardım edebilir misiniz? Çok teşekkür ederim.

Düzenle

Ubuntu Software merkezinden (Curl) kurmaya çalıştığımda erroe mesajı aynı oldu

Paket bağımlılıkları çözülemiyor

Bu hata, eksik olan veya yüklenemeyen gerekli ek yazılım paketleri nedeniyle olabilir. Ayrıca, aynı anda kurulmasına izin verilmeyen yazılım paketleri arasında bir çatışma olabilir.

Aşağıdaki paketlerin karşılanmayan bağımlılıkları vardır:

 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

REDAKTE

sudo yetenek yüklemek 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
Bunu denedin mi apt-get install -f?
arsaKasra 16:13

0 yükseltildi, 0 yeni yüklendi, 0 kaldırıldı ve 0 yükseltilmedi.
Aashu

Eğer henüz yapmadıysanız Ayrıca, bir göz atın bu , Google'ın Chrome ile bazı çelişkili durumlar ortaya çıkabilir diyor.
arsaKasra

Yanıtlar:


67

İçinde bulduğunuz 3 paket curl-config:

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

Hepsi aynı işlevselliğe sahip gibi görünüyor. Bunlardan ilki Synaptic Package Manager ile kurdum ve RCurl'u CRAN'dan yükleyebildim.

Yani, ilk seçeneği seçerseniz, bir terminal kutusu açın ve

sudo apt-get install libcurl4-gnutls-dev

sonra R'ye gir ve yap

install.packages("RCurl")

5
Üzgünüm, cevabınız tam olarak ne anlama geliyor?
Matt O'Brien,

3
Bir terminal kutusunda R, sudo liblcurl4-gnutls-dev dışında yapın. Ardından, RCurl'u R. içinde yerleştirilen install.packages ("RCurl") kullanarak kurun
Placidia

3
Ben takip ettim ve mükemmel çalıştı. Yeni terminalde sudo apt-get install libcurl4-openssl-dev kurulumunda R konsolunda install.packages ("RCurl")
Chitrasen

2
apt-get install libcurl4-gnutls-dev
user2413

1
Eklemek için sadece üçüncüsü libcurl4-openssl-devLinux Mint 17.1
MichaelChirico'da

2

İşte aynı sorunu çözmek için yaptığım şey:

sudo aptitude install libcurl4-openssl-dev

Ve çözümü kabul etmeniz istendiğinde, [Y / n / q]

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

cevap "n". Ardından, başka bir eylem istendiğinde [Y] cevabını verin.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.