有网络的情况下,linux系统提示无法使用pip命令:
有两种解决方式:
第一种:
===============================
敲命令:python -m ensurepip
得到pip的setuptools
然后就可以用:easy_install pip
===============================
第二种:
===============================
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
python get-pip.py
===============================