Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install curl on debian 7.1? Getting the following error on apt-get install curl

Tags:

curl

rvm

debian

The following packages have unmet dependencies:

curl : Depends: libcurl3 (= 7.26.0-1+wheezy2) but it is not installable

E: Unable to correct problems, you have held broken packages.

like image 557
ben_joseph Avatar asked Nov 05 '13 12:11

ben_joseph


People also ask

Why curl command is not working?

We might have come across errors like “curl: command not found” while working in the terminal. This type of error comes due to only one reason: the relevant package is not installed. Curl is a very popular data transfer command-line utility used for downloading and uploading data from or to the server.

Does Debian have curl?

One can easily install and use the curl command on a Debian Linux using the apt command or apt-get command to use the curl. This page shows how to install curl on Debian Linux version 10/9/8.


1 Answers

apt-get remove apt-listchanges 
apt-get install curl 

this will get it done

like image 85
Sebastian Thomas Avatar answered Sep 20 '22 00:09

Sebastian Thomas