Skip to content

Install latest cURL package from source

jdhao edited this page Sep 11, 2021 · 2 revisions

Run the following command:

wget https://curl.haxx.se/download/curl-7.67.0.tar.gz
tar xvf curl-*.tar.gz
cd curl-7.67.0
./configure --prefix=$HOME/local
make -j
make install

Then add ~/local/bin to PATH:

export PATH=$HOME/local/bin:$PATH

Ref:

https://geekflare.com/curl-installation/

Clone this wiki locally