美文网首页
centos下 安装pymsql失败的解决方案

centos下 安装pymsql失败的解决方案

作者: 孙子衡 | 来源:发表于2018-09-27 17:05 被阅读0次

报错信息
pip3 install pymysql 时候报一下错误

Could not fetch URL https://pypi.python.org/simple/pillow/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.python.org', port=443): Max retries exceeded with url: /simple/pillow/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)) - skipping
Could not find a version that satisfies the requirement pillow (from versions: )

解决方案

pip3 install pymysql -i http://pypi.douban.com/simple --trusted-host pypi.douban.com



这些安装的数据包好几个网站都有镜像:

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
使用方法很简单,直接 -i 加 url 即可!如下:

pip install web.py ``-``i http:``/``/``pypi.douban.com``/``simple

或者

pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

也可以把这些包源设置成默认的,方法是修改pip.ini文件的配置:比如

[global]index-url = http://pypi.douban.com/simple[install]trusted-host=pypi.douban.com

--------------------- 本文来自 weay 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/weay/article/details/82261442?utm_source=copy

相关文章

网友评论

      本文标题:centos下 安装pymsql失败的解决方案

      本文链接:https://www.haomeiwen.com/subject/byzeoftx.html