wget因为https和ssl的原因不能下载

在使用wget下载过程中,有时会因为https和ssl的原因,出现类似"Unable to establish SSl connection"的错误,导致不能下载。这时可以使用 --no-cookie --no-check-certificate  这两个参数解决。
wget --no-cookie --no-check-certificate  http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz

你可能感兴趣的:(Linux和shell,wget,https,ssl,不能下载)