Heim >Backend-Entwicklung >Python-Tutorial >Warum schlägt die Pip-Installation unter Python < 3.6 fehl und wie kann ich das beheben?

Warum schlägt die Pip-Installation unter Python < 3.6 fehl und wie kann ich das beheben?

Barbara Streisand
Barbara StreisandOriginal
2024-12-15 03:29:09797Durchsuche

Why is pip Installation Failing on Python < 3.6 and How Can I Fix It?

Pip in Python installieren < 3.6

Ein häufiger Fehler tritt auf, wenn versucht wird, Pip mit den folgenden Schritten in Bitbucket CI zu installieren:

script:
    - apt-get update
    - apt-get install -y python-dev
    - curl -O https://bootstrap.pypa.io/get-pip.py
    - python get-pip.py
    ... and a few more steps

Der Fehler äußert sich wie folgt:

Traceback (most recent call last):
  File "get-pip.py", line 24226, in <module>
    main()
  File "get-pip.py", line 199, in main
    bootstrap(tmpdir=tmpdir)
  File "get-pip.py", line 82, in bootstrap
    from pip._internal.cli.main import main as pip_entry_point
  File "/tmp/tmpUgc5ng/pip.zip/pip/_internal/cli/main.py", line 60
    sys.stderr.write(f"ERROR: {exc}")
SyntaxError: invalid syntax<h3>Warum ist das so? Fehlgeschlagen?</h3>
</h2>
<p>Der Fehler steht im Zusammenhang mit der Einstellung der Pip 21.0-Unterstützung für Python 2 und 3.5. Neuere Pip-Versionen erfordern Python 3.6.</p>
<h3>So lösen Sie das Problem</h3>
<p>So installieren Sie Pip für die spezifischen Python-Versionen:</p>
<ul>
<li>
<p>Python 2.7: Installieren Sie von https://bootstrap.pypa.io/pip/2.7/</p>
<pre class="brush:php;toolbar:false">curl -O https://bootstrap.pypa.io/pip/2.7/get-pip.py
python get-pip.py
python -m pip install --upgrade "pip < 21.0"
  • Python 3.6: Installation von https://bootstrap.pypa.io/pip/3.6/
  • Python 3.5: Installation von https://bootstrap.pypa.io/pip/3.5/
  • Python 3.4: Installation von https://bootstrap.pypa.io/pip/3.4/

    python -m pip install --upgrade "pip < 19.2"
  • Das obige ist der detaillierte Inhalt vonWarum schlägt die Pip-Installation unter Python < 3.6 fehl und wie kann ich das beheben?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

    Stellungnahme:
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn