错误
Could not find a version that satisfies the requirement PIL (from versions: none) ERROR: No matching distribution found for PIL
Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at 'D:\PyCode\venv\Scripts\python.exe'.
原因
1.网速过慢导致下载出错
2.版本不兼容问题
3.安装内置库或名称错误
解决方法
1.网速问题导致出错
在没有做任何配置的情况下,国内下载第三方库的时候是特别缓慢的,有时下载速度甚至才10几kb/s,还可能会遇到下载到一半,突然跳出一大堆红色提示,然后下载失败的情况。
其实这是因为我们通过pip安装时默认是从 PyPI 官方服务器拉取并下载包,使用的是默认的国外镜像源即 https://pypi.org/simple ,网络连接较差,下载速度比较慢,经常会网络传输断开导致下载失败。
在这种情况下,可以选择更换为国内的镜像源,例如阿里云、豆瓣、清华大学等都提供了Python的镜像服务,利用这些国内的镜像,可以大大提高下载

订阅专栏 解锁全文
1447

被折叠的 条评论
为什么被折叠?



