我从github:https://github.com/nghttp2/nghttp2下载源代码。并按步骤安装:
$ autoreconf -i
$ automake
$ autoconf
$ ./configure
$ make每一步都没问题,但我不能用。
nghttp
-bash: nghttp:未找到命令
但是,我成功地将nghttp2安装在Ubuntu14.04上!
发布于 2016-10-10 08:53:26
sudo yum groupinstall "Development Tools"
sudo yum install libev libev-devel zlib zlib-devel openssl openssl-devel git
git clone git@github.com:tatsuhiro-t/nghttp2.git //or download and unzip
cd nghttp2
autoreconf -i
automake
autoconf
./configure --prefix=/usr/local/nghttpx --enable-app
make
sudo make install
/usr/local/bin/{nghttp,nghttpd,nghttpx}https://stackoverflow.com/questions/39137702
复制相似问题