Python-Installationspakete: Pakete konnten mit dem Befehl „pip install“ nicht installiert werdenPython

Python-Programme
Anonymous
 Python-Installationspakete: Pakete konnten mit dem Befehl „pip install“ nicht installiert werden

Post by Anonymous »

Ich habe versucht, das Vertex-Paket in meiner Conda-Umgebung zu installieren, indem ich den Befehl „pip install“ an der Anaconda-Eingabeaufforderung verwendet habe, erhalte jedoch weiterhin die folgenden Warnungen und Fehlermeldungen:

Code: Select all

pip install vertex

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/vertex/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/vertex/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/vertex/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/vertex/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/vertex/
ERROR: Could not find a version that satisfies the requirement vertex
ERROR: No matching distribution found for vertex
Screenshot der Anaconda-Eingabeaufforderung:
Image

Ich habe versucht, das Timeout des Pip-Befehls zu verlängern, und habe die folgenden Warnungen und Fehler erhalten:

Code: Select all

pip --default-timeout=1000 install vertex

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))': /simple/vertex/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))': /simple/vertex/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))': /simple/vertex/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))': /simple/vertex/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))': /simple/vertex/
ERROR: Could not find a version that satisfies the requirement vertex
ERROR: No matching distribution found for vertex
Screenshot der Anaconda-Eingabeaufforderung:
Image

Ich hatte vor etwa einer Woche das gleiche Problem bei der Installation von scipy, aber ich habe es geschafft, es zu umgehen, indem ich Folgendes verwendet habe Befehl:

Code: Select all

conda install -c conda-forge scipy
Es war erfolgreich und dann habe ich den Conda-Fronge-Kanal zu meiner Umgebung hinzugefügt. Beim Versuch, das Vertex-Paket mit dem Befehl „conda install“ zu installieren, erhielt ich die Meldung, dass das Vertex-Paket in den aktuellen Kanälen nicht gefunden werden konnte und es mir nicht gelang, den entsprechenden Kanal dafür zu finden. Die Befehlszeile:

Code: Select all

conda install vertex

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve.  Retrying with flexible solve.

PackagesNotFoundError: The following packages are not available from current channels:

- vertex

Current channels:

- https://conda.anaconda.org/bioconda/win-64
- https://conda.anaconda.org/bioconda/noarch
- https://conda.anaconda.org/anaconda/win-64
- https://conda.anaconda.org/anaconda/noarch
- https://conda.anaconda.org/conda-forge/win-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/win-64
- https://repo.anaconda.com/pkgs/free/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

https://anaconda.org

and use the search bar at the top of the page.
So oder so konnte ich das Vertex-Paket nicht in meiner Conda-Umgebung installieren.
Vielen Dank im Voraus an alle Helfer :)

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post