我正在尝试安装Pygame,出现了这个消息:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pygame/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pygame/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pygame/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pygame/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pygame/
ERROR: Could not find a version that satisfies the requirement pygame (from versions: none)
ERROR: No matching distribution found for pygame
字符串
我正在使用Python 3.9.2
3条答案
按热度按时间iqih9akk1#
根据您提供的错误日志:
在连接断开by 'ReadTimeoutError*(“HTTPSCConnectionPool(host =' pypi.org ',port=443)后:读取超时。(readtimeout=15)”)
我猜您可能试图通过命令提示符安装
pygame
模块与pip
。但是,pip需要连接到pypi.org才能下载模块的文件。
因此,您的计算机可能无法下载库。
此问题可能是由于Internet连接不良或
pip
端的问题引起的。如何解决:
pip
似乎不能在Python 3.9中正常工作,所以你可以:pip
**[编辑]**截至2023年,这个问题已经解决。
*如果这没有帮助,请尝试以下修复:
pip --default-timeout=1000 install [PACKAGENAME]
个希望有帮助!
njthzxwz2#
溶液
错误消息中最重要的部分是:
字符串
你得到这个是因为
pip
找不到python3.9
兼容python3.9
的稳定版本。剩下的错误消息是一个超时,因为pip
无限期地尝试找到匹配,但总是空的。这些是你的选择:
1.等待为
Python3.9
添加支持1.安装不受支持的开发版本如下:
型
或者
型
1.您可以将版本回滚到
ptyhon3.8
或更早版本。pw136qt23#
您可能需要给予IPv4优先于IPv6。
如果在Windows上运行,请以管理员权限打开CMD并应用以下命令:
字符串
如果你运行在Ubuntu上(你可以很容易地转换任何其他Linux发行版的命令):
型