【发布时间】:2020-01-10 10:42:51
【问题描述】:
我无法修复此错误。你不帮我吗?这个错误是在我安装 PyAudio 时发生的。
处理 d:\python\lib\site-packages\pywin32.pth 的第 7 行时出错:
Traceback(最近一次调用最后一次): 文件“d:\python\lib\site.py”,第 169 行,在 addpackage 中 执行(行) 文件“”,第 1 行,在 ModuleNotFoundError:没有名为“pywin32_bootstrap”的模块
Remainder of file ignored
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after
connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnecti
on object at 0x000001C3C2DE98B0>: Failed to establish a new connection: [Errno 11001] getaddrinfo
failed')': /simple/pyaudio/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after
connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnecti
on object at 0x000001C3C2DF7AC0>: Failed to establish a new connection: [Errno 11001] getaddrinfo
failed')': /simple/pyaudio/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after
connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnecti
on object at 0x000001C3C2DF7730>: Failed to establish a new connection: [Errno 11001] getaddrinfo
failed')': /simple/pyaudio/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after
connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnecti
on object at 0x000001C3C2DF7460>: Failed to establish a new connection: [Errno 11001] getaddrinfo
failed')': /simple/pyaudio/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after
connection
broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnecti
on object at 0x000001C3C2DF75B0>: Failed to establish a new connection: [Errno 11001] getaddrinfo
failed')': /simple/pyaudio/
ERROR: Could not find a version that satisfies the requirement PyAudio (from versions: none)
ERROR: No matching distribution found for PyAudio
【问题讨论】:
-
您要运行什么代码 sn-p?没有人可以帮助您仅追溯一些随机错误
-
欢迎来到 StackOverflow,请仔细阅读并相应地编辑您的问题,以便其他人可以帮助您stackoverflow.com/help/how-to-ask
-
试试
pip install PyAudio=0.2.11
标签: python python-3.x python-module