简体   繁体   English

错误:找不到满足 pyautogui 要求的版本(来自版本:无)

[英]ERROR: Could not find a version that satisfies the requirement pyautogui (from versions: none)

I tried to import my module.我试图导入我的模块。 I put this in Jupyter notebook我把它放在 Jupyter 笔记本上

! pip install pyautogui 

the output is output 是

could not fetch URL https://pypi.org/simple/pyautogui/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pyautogui/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))) - skipping




WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))': /simple/pyautogui/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))': /simple/pyautogui/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))': /simple/pyautogui/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))': /simple/pyautogui/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)'))': /simple/pyautogui/
ERROR: Could not find a version that satisfies the requirement pyautogui (from versions: none)
ERROR: No matching distribution found for pyautogui

how can i get rid of this problem?我怎样才能摆脱这个问题? Please help..请帮忙..

If you have both python2 and python3 it is best to use pip3 and sometimes even if python2 is not installed errors may happen with pip如果您同时拥有 python2 和 python3,最好使用 pip3,有时即使没有安装 python2,pip 也可能发生错误

So replace ! pip install pyautogui所以更换! pip install pyautogui ! pip install pyautogui with ! pip3 install pyautogui ! pip install pyautogui ! pip3 install pyautogui ! pip3 install pyautogui and it should work ! pip3 install pyautogui它应该可以工作

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 错误:找不到满足 tensorflow 要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) 错误:找不到满足要求时间的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement time (from versions: none) 错误:找不到满足Deepcorrect要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement deepcorrect (from versions: none) 错误:找不到满足要求 webdriver 的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement webdriver (from versions: none) 错误:找不到满足火炬要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement torch (from versions: none) 错误:找不到满足 csv 要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement csv (from versions: none) 错误:找不到满足 busio 要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement busio (from versions: none) 错误:找不到满足 fastapi 要求的版本(来自版本:无) - ERROR: Could not find a version that satisfies the requirement fastapi (from versions: none) 找不到满足 optapy 要求的版本(来自版本:无) - Could not find a version that satisfies the requirement optapy (from versions: none) 找不到满足 DoubleTable 要求的版本(来自版本:无) - Could not find a version that satisfies the requirement DoubleTable (from versions: none)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM