Reputation: 3122
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.
Upvotes: 12
Views: 62700
Reputation: 141
You can download the source code here, and compile it
./configure
make
sudo make install
You'll be in the last version
Upvotes: 0
Reputation: 1505
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 :-)
Upvotes: 25