Skip to content

Instantly share code, notes, and snippets.

@tr4nk
Created January 6, 2018 05:58
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save tr4nk/83761e963fe7e95e3c0d897cb8fe4117 to your computer and use it in GitHub Desktop.
Save tr4nk/83761e963fe7e95e3c0d897cb8fe4117 to your computer and use it in GitHub Desktop.
Install curl with sftp and https support on Ubuntu
  • Download latest curl
  • Manual install curl:
sudo apt install libssh2-1-dev libssl-dev
cd curl/
./configure --with-ssl --with-libssh2
make
sudo make install
  • Test installation:
curl -V
@mohessaid
Copy link

Thank you very much for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment