pip安装包报错Could not find a version that satisfies the requirement pymysql (from versions: none)

使用python自带的pip安装包时,可能会报以下错误:

ERROR: Could not find a version that satisfies the requirement pymysql (from versions: none)       
ERROR: No matching distribution found for pymysql 

1. 可能需要升级一下pip版本

python -m pip install --upgrade pip

执行完后发现还是报一样的错误

2. 考虑换一个pip源

pip install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple/

执行完后发现还是报一样的错误

3. 考虑是网速的原因,采用国内的镜像源来加速

pip install pymysql -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
# --trusted-host http://pypi.douban.com 获得ssl证书的认证

执行成功

你可能感兴趣的:(编程语言,python,开发语言,后端)