Last active
December 15, 2025 05:03
-
Star
(122)
You must be signed in to star a gist -
Fork
(34)
You must be signed in to fork a gist
-
-
Save fideloper/f72997d2e2c9fbe66459 to your computer and use it in GitHub Desktop.
Update curl on Ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env bash | |
| # Install any build dependencies needed for curl | |
| sudo apt-get build-dep curl | |
| # Get latest (as of Feb 25, 2016) libcurl | |
| mkdir ~/curl | |
| cd ~/curl | |
| wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2 | |
| tar -xvjf curl-7.50.2.tar.bz2 | |
| cd curl-7.50.2 | |
| # The usual steps for building an app from source | |
| # ./configure | |
| # ./make | |
| # sudo make install | |
| ./configure | |
| make | |
| sudo make install | |
| # Resolve any issues of C-level lib | |
| # location caches ("shared library cache") | |
| sudo ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
EDITED: Great... Not working. Curl is giving no response.
Also PHP info is showing another version of curl: cURL Information | 7.47.0
I did sudo service apache2 restart
Thank you, it works. I have updated to latest (7.63.0 on 2019-01-09) because I had some problems with Curl 7.49 and Guzzle.
Steps for Ubuntu 16.04
touch update_curl.sh
chmod u+wx update_curl.sh
nano update_curl.sh
#! /usr/bin/env bash
sudo apt-get build-dep curl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.63.0.tar.bz2
tar -xvjf curl-7.63.0.tar.bz2
cd curl-7.63.0
./configure --prefix=/usr
make
sudo make install
sudo ldconfig
./update_curl.sh