ich kann bei mir nichts mit pip installieren. Es kommt immer eine Fehlermeldung, weil pip sich nicht mit dem Installationsserver verbinden kann.
Code: Alles auswählen
Pupo1 ~/.virtualenvs $ python3.9 -m venv test
Pupo1 ~/.virtualenvs $ source ./test/bin/activate
(test)
Pupo1 ~/.virtualenvs $ pip instasll -U pip
ERROR: unknown command "instasll" - maybe you meant "install"
(test)
Pupo1 ~/.virtualenvs $ pip install -U pip
Requirement already satisfied: pip in ./test/lib/python3.9/site-packages (20.3.4)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7f500e7104f0>, 'Connection
to 192.168.10.185 timed out. (connect timeout=15)')': /simple/pip/
Ich habe auch schon versucht:
Code: Alles auswählen
(test)
Pupo1 ~/.virtualenvs $ pip --proxy=pypi.python.org install -U pip
Requirement already satisfied: pip in ./test/lib/python3.9/site-packages (20.3.4)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7ffa083aefa0>, 'Connection
to 192.168.10.185 timed out. (connect timeout=15)')': /simple/pip/
Ich habe Debian 11 auf einem Server und darauf läuft Python 3.9.2 . Ich weiß nicht, ob es relevant ist, kürzlich hatte ich Python 2 deinstalliert, gemerkt, dass das keine gute Idee war, und es dann wieder installiert.
Grüße, Pupo1