Windows10, Python3.7.4, Visual Studio Code 1.40.2 Persönlicher PC im Campuslabor, ** Unter Proxy-Umgebung (Ursache) **
pip install opencv-python
Dieser Fehler
Ausgabe
Collecting opencv-python
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x0000028DF62573C8>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/opencv-python/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x0000028DF6259388>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/opencv-python/
ERROR: Operation cancelled by user
Beim Betrachten des Inhalts ist die Zeit abgelaufen. Wenn ich mich erinnere, dass es sich um einen Proxy handelt und danach suche, scheint der Proxy die Ursache zu sein.
→ Wenn Sie einen Proxy durchlaufen, schreiben Sie den Namen --proxy server nach pip ~
pip install opencv-python --proxy http://ID@Servername:8080
Es scheint, dass es getan wurde, also überprüfen Sie
Ausgabe
python
Python 3.7.4 (default, Aug 9 2019, 18:34:13) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32nc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.__version__
'4.1.2'
Ich konnte es gut installieren
Recommended Posts