1 当我输入 wget https://bootstrap.pypa.io/get-pip.py
wget: not an http or ftp url: https://bootstrap.pypa.io/get-pip.py
2 解决方法是加--no-check-certificate(忽略证书)参数,但我已经加了,还是这样。
wget --no-check-certificate 'https://bootstrap.pypa.io/get-pip.py'
wget: unrecognized option `--no-check-certificate'
3 输入这个命令则可以下载
curl -O -L 'https://bootstrap.pypa.io/get-pip.py'