数据库
首页 > 数据库> > pip安装包报错Could not find a version that satisfies the requirement pymysql (from versions: none)

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

作者:互联网

第一种可能:

这时可能需要我们升级一下pip版本,于是执行命令

python -m pip install --upgrade pip

 

第二种可能:

这时考虑换一个pip源

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

 

 

第三种可能:

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

pip install 包名-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

--trusted-host http://pypi.douban.com 这是为了获得ssl证书的认证

标签:douban,requirement,--,com,pypi,报错,install,pip,安装包
来源: https://www.cnblogs.com/wqzn/p/16445780.html