安装cURL库以满足对Ubuntu 12.04上R的依赖


8

我正在尝试安装curl库。它是RCurlR中软件包的依赖项,因此我必须安装它才能使R正常工作。我试过了:

$ sudo apt-get install libcurl4-opensll-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libcurl4-opensll-dev

我在下面的三个链接中发现了类似的问题。但是他们无助于解决我的困境。

我需要进行以下Rcurl工作:sudo apt-get install libcurl4-opensll-dev


2
你有错字。它应该是“ libcurl4-openssl-dev”而不是“ libcurl4-opensll-dev”
kholis

抱歉...改错字了。我的错。
克里斯,

Answers:


8

对于PHP:

安装curl

sudo apt-get install php5-curl

重新启动Apache

sudo apache2ctl restart

6

您可以通过以下方式简单地安装Curl

sudo apt-get install curl libc6 libcurl3 zlib1g

0

使用以下-

mkdir xxx
cd xxx

用于32位-

wget http://packages.ubuntu.com/precise/i386/libcurl4-openssl-dev/download

对于64位使用-

wget http://packages.ubuntu.com/precise/amd64/libcurl4-openssl-dev/download

要知道package_name.deb下载文件的名称,请使用-

ls

用于安装-

sudo dpkg -i package_name.deb

只需输入软件包的名称即可,而不是从前面的命令ls获得的名称。

希望对您有所帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.