Python安装第三方库出错完美解决方法

错误

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 ,网络连接较差,下载速度比较慢,经常会网络传输断开导致

posted @ 2024-08-07 10:25  坦笑&&life  阅读(67)  评论(0编辑  收藏  举报  来源