Skip to content

Instantly share code, notes, and snippets.

@tachyons
Last active October 18, 2020 10:41
Show Gist options
  • Save tachyons/3adcbbe10e645feb069dc4f49406fde1 to your computer and use it in GitHub Desktop.
Save tachyons/3adcbbe10e645feb069dc4f49406fde1 to your computer and use it in GitHub Desktop.
Installing curl with http2 in ubuntu
sudo apt-get install nghttp2 libnghttp2-dev 
http://curl.haxx.se/download/curl-7.46.0.tar.bz2
tar -xvjf curl-7.46.0.tar.bz2
cd curl-7.46.0
./configure --with-nghttp2 --prefix=/usr/local
make
sudo make install
sudo ldconfig
@tachyons
Copy link
Author

Yes

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