pycharm安装第三方包问题

一、几个可以参考的镜像网站:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/

二、如果报错:ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas

可以执行这个命令,以豆瓣为例:pip install 包名称 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
pycharm安装第三方包问题_第1张图片
三、报错:Could not find a version that satisfies the requirement PIL (from versions: )No matching distribution found for PIL
解决方案

参考文章:https://blog.csdn.net/yushuangping/article/details/82963839

你可能感兴趣的:(python)