Skip to content

Instantly share code, notes, and snippets.

@lexavey
Created October 18, 2022 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lexavey/bc93b7d18062f063462b68d2f2126c7a to your computer and use it in GitHub Desktop.
Save lexavey/bc93b7d18062f063462b68d2f2126c7a to your computer and use it in GitHub Desktop.
Install latest cURL in linux
## First, download newest curl package from here https://curl.haxx.se/download.html
apt remove curl
apt autoremove
apt-get install gcc make -y
wget https://curl.se/download/curl-7.85.0.tar.gz
tar xzvf curl-7.85.0.tar.gz
cd curl-7.85.0
./configure
## if you facing error, try configure with openssl
## ./configure --with-openssl
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment