Como instalo o curl com o suporte a http2?

14

Parece que o pacote curl com o Ubuntu 16.04 não tem suporte a http2. Como habilitar http2 no curl

    
por Tachyons 19.02.2017 / 07:39

1 resposta

35

A partir de agora (janeiro de 2018). Você terá que instalar o curl da fonte para obter suporte http2. Você pode fazer isso usando os seguintes comandos

sudo apt-get install build-essential nghttp2 libnghttp2-dev libssl-dev
wget https://curl.haxx.se/download/curl-7.58.0.tar.gz
tar -xvf curl-7.58.0.tar.gz
cd curl-7.58.0
./configure --with-nghttp2 --prefix=/usr/local --with-ssl=/usr/local/ssl
make
sudo make install
sudo ldconfig
    
por Tachyons 19.02.2017 / 07:39