Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install latest libcurl on debian server?

Tags:

debian

libcurl

I'm kind of new to these things. I do not know what command line is required to install latest version of libcurl. I followed few articles found on net but i get No acceptable C compiler found in $PATH. I'm on a debian server. Please help.

like image 424
Vinay Jeurkar Avatar asked Mar 20 '12 04:03

Vinay Jeurkar


1 Answers

su -
apt-get update
apt-cache search ^libcurl
apt-get install <whatever_apt-cache_listed>

And be sure to check Google first, before asking these basic questions here.

EDIT: Thanks @x-yuri for pointing out the su vs su - difference, it slipped through my fingers when I wrote this :-)

like image 172
Victor Nițu Avatar answered Oct 30 '22 10:10

Victor Nițu