在我的jupyter笔记本中安装fuzzywuzzy库时出错

问题描述 投票:0回答:1

当我试图在我的jupyter笔记本中安装fuzzywuzzylibrary时,我遇到了错误。

Retrying (Retry(total=4, connect=None, read=None, redirect=None, 
status=None)) after connection broken by 'ProxyError('Cannot connect to 
proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication 
Required',))': /simple/fuzzywuzzy/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, 
status=None)) after connection broken by 'ProxyError('Cannot connect to 
proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication 
Required',))': /simple/fuzzywuzzy/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, 
status=None)) after connection broken by 'ProxyError('Cannot connect to 
proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication 
Required',))': /simple/fuzzywuzzy/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, 
status=None)) after connection broken by 'ProxyError('Cannot connect to 
proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication 
Required',))': /simple/fuzzywuzzy/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, 
status=None)) after connection broken by 'ProxyError('Cannot connect to 
proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication 
Required',))': /simple/fuzzywuzzy/
Could not find a version that satisfies the requirement fuzzywuzzy (from 
versions: )
No matching distribution found for fuzzywuzzy

谁能请帮帮我?

python string installation nlp fuzzywuzzy
1个回答
0
投票

试试这个:pip install --proxy https://username:pwd@proxy:host fuzzywuzzy

© www.soinside.com 2019 - 2024. All rights reserved.