Skip to content

Instantly share code, notes, and snippets.

@tr4nk
Created January 6, 2018 05:58
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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