web-dev-qa-db-fra.com

Comment installer curl avec le support http2

Il semble que curl emballé avec Ubuntu 16.04 ne supporte pas http2. Comment puis-je activer http2 dans curl

18
Tachyons

À partir de maintenant (janvier 2018). Vous devrez installer curl à partir de la source pour obtenir le support http2. Vous pouvez le faire en utilisant les commandes suivantes

Sudo apt-get -y install build-essential nghttp2 libnghttp2-dev libssl-dev
wget https://curl.haxx.se/download/curl-7.63.0.tar.gz
tar xzf curl-7.63.0.tar.gz
cd curl-7.63.0
./configure --with-nghttp2 --prefix=/usr/local --with-ssl
make && Sudo make install
Sudo ldconfig
42
Tachyons