解决WARNING: There was an error checking the latest version of pip.问题
警告:检查最新版本的pip时出错。
报错原因:需要升级pip版本才可以安装其他模块。
解决方法:升级pip
共有如下四种方式升级pip
python -m pip install --upgrade pip
pip install --upgrade pip
python3 -m pip install --upgrade pip
python -m pip install -U --force-reinstall pip
经测试,第四种方式效果最好,其他方式升级pip可能继续出现相同的问题