0
當我使用wget我得到以下錯誤:CentOS的wget的問題
HTTPS support not compiled in.
當我嘗試安裝wget的自己,我得到:
./configure –with-ssl=openssl
configure: error: invalid variable name: `–with-ssl'
當我使用wget我得到以下錯誤:CentOS的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
。