Python pip install失败的各种解决方法

目录

  • 网络问题
  • 版本问题
  • 从 wheel 安装

网络问题

ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.

解决方法一: 梯子
解决方法二:换源

>pip install package -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.co

版本问题

ERROR: Could not find a version that satisfies the requirement

解决方法一:更换 Python 版本
解决方法二:先更新 pip

python -m pip install --upgrade pip

解决方法三:尝试用 pip3 install

从 wheel 安装

wheel 文件下载地址
下载是看清楚 python 版本,操作系统,64 还是 32 位,如果没有符合 的,只能更改 python 版本。

你可能感兴趣的:(Python pip install失败的各种解决方法)