小技巧:pip 彻底离线进行包的安装

在用 pip 安装 .whl 时给你来了这么一句

WARNING: There was an error checking the latest version of pip.

然后就装不下去的。各种“解决方案”就是让你在线升级。对比了本地版本和 PyPi.org 上的版本,已经是最新的了。

我的原因其实就是网关被阻,pip 不仅下载不了,连检测版本都不行。最终找到一个不在 pip -h 中列出的开关 --no-index 解决。

D:\...>pip install --no-index lxml-4.9.0-cp38-cp38-win32.whl
Processing d:\...lxml-4.9.0-cp38-cp38-win32.whl
Installing collected packages: lxml
Successfully installed lxml-4.9.0

你可能感兴趣的:(Python3,pip,python)