Wir richten die Umgebung ein, indem wir versuchen, maschinelles Lernen zu berühren. Die Zielkonfiguration ist wie folgt.
Als ich Anaconda installierte und die Installation von Anaconda Powershell Prompt aus ausführte, war es Timeout, als ich die Installation von Tensorflow ausführte.
(base) PS C:\Windows\system32> pip install tensorflow==1.13.1
Collecting tensorflow==1.13.1
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x0000028CF4E8E860>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/tensorflow/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x0000028CF4E8E898>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/tensorflow/
...
Fügen Sie den folgenden Inhalt am Ende von .condarc hinzu. .condarc sollte sich standardmäßig in C: \ Users \ username \ befinden.
proxy_servers:
http: http://<user>:<password>@<proxy_host>:<proxy_port>/
https: http://<user>:<password>@<proxy_host>:<proxy_port>/
Leider ist es nicht weggegangen.
Wenn Sie mit Pip-Proxy usw. googeln ... (unten weggelassen Also habe ich es versucht
https://qiita.com/samunohito/items/40a03e1464899225e698
pip install tensorflow==1.13.1 --proxy http://<user>:<password>@<proxy_host>:<proxy_port>
Sie haben jetzt installiert!
Wenn ich Proxy sage, setze ich es oft reflexartig in eine Umgebungsvariable und war süchtig danach, es wie folgt anzugeben.
pip install tensorflow==1.13.1 --proxy <user>:<password>@<proxy_host>:<proxy_port>
Exception:
<Folgendes wird weggelassen>
pip._vendor.urllib3.exceptions.ProxySchemeUnknown: Not supported proxy scheme
Ich habe Angst zu denken.
Recommended Posts