[PYTHON] Die Installation von pip verhindert, dass der Proxy installiert wird

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/
...

Lösungen

1. Einfach fehlende Proxy-Einstellungen

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.

2. Wird durch die Proxy-Option von pip angegeben

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!

Betrachtung

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

Die Installation von pip verhindert, dass der Proxy installiert wird
Pip-Installation in einer Proxy-Umgebung
Pip-Installation (Windows) unter Proxy-Umgebung
Proxy-Fehler beim Ausführen von "pip install"
sudo pip installieren
Von conda-forge installieren
Holen Sie sich während der Pip-Installation Datendateien von einer anderen Stelle
Installieren Sie pip, pyenv, BeautifulSoup4
Pakete mit pip3 installieren
So installieren Sie pip
Installieren Sie Python von der Quelle
Fehler bei der Pip-Installation
Installieren Sie Apache 2.4.41 von der Quelle
Installieren Sie den Befehl pip
Installiere pip / pip3 unter Ubuntu
Installieren Sie scikit.learn mit pip
Wenn die Pip-Installation fehlschlägt
Installieren Sie Jupiter Notebook mit pip unter Windows in einer Proxy-Umgebung
Aktivieren Sie CentOS 6-Pips über Proxy
Installieren Sie ansible aus dem Quellcode
Wenn Moos mit Pip installieren
Installieren Sie das Github-Repository mit pip
Pip installiert das GitHub-Repository
Installieren Sie pyenv von Homebrew, installieren Sie Python von pyenv
Installieren von Apache Maven (von der Quelle)