【发布时间】:2017-08-08 04:06:54
【问题描述】:
当我使用 wget 时出现以下错误:
HTTPS support not compiled in.
当我尝试自己安装 wget 时,我得到:
./configure –with-ssl=openssl
configure: error: invalid variable name: `–with-ssl'
【问题讨论】:
当我使用 wget 时出现以下错误:
HTTPS support not compiled in.
当我尝试自己安装 wget 时,我得到:
./configure –with-ssl=openssl
configure: error: invalid variable name: `–with-ssl'
【问题讨论】:
你有错字。不要使用 unicode 破折号–with-ssl=openssl。使用标准 ascii 两个破折号传递正确的参数 --with-ssl=openssl。
【讨论】: