解决python在使用pip安装库时‘找不到库’:Could not find a version that satisfies the requirement pymysql

复制下面这位道友的,换的下载源非常好用,怕帖子有一天突然没了[滑稽],备份一下(侵权删)。 

解决python在使用pip安装库时‘找不到库’:Could not find a version that satisfies the requirement pymysql_第1张图片

 

 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证书的认证 

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