>백엔드 개발 >파이썬 튜토리얼 >Python 3.6 이하 버전에서 Pip 설치가 실패하는 이유는 무엇입니까?

Python 3.6 이하 버전에서 Pip 설치가 실패하는 이유는 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-12-16 09:09:16321검색

Why Does Pip Installation Fail in Python Versions Below 3.6?

Python에서 pip 설치 실패 < 3.6

다음 단계를 사용하여 Bitbucket CI를 통해 애플리케이션을 배포하면 Python에서 pip를 설치하지 못합니다 < 3.6:

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

발생한 오류:

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<p><strong>원인:</strong></p>
<p>Pip 21.0 이후에는 Python 3.6 이상이 필요합니다. Python 2를 포함하여 이전 버전에서 지원되지 않는 구문 기능 도입 3.5.</p>
<p><strong>해결 방법:</strong></p>
<p>Python 버전용 pip를 설치하려면 < 3.6:</p>
<p><strong>Python 2.7:</strong></p>
<ul>
<li>에서 pip 다운로드 https://bootstrap.pypa.io/pip/2.7/get-pip.py</li>
<li>
<p>설치:</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 :

  • pip 다운로드 https://bootstrap.pypa.io/pip/3.6/

Python 3.5:

  • 에서 pip 다운로드 https://bootstrap.pypa.io/pip/3.5/

Python 3.4:

  • 에서 pip 다운로드 https://bootstrap.pypa.io/pip/3.4/
  • 다음으로 업그레이드:

    python -m pip install --upgrade "pip < 19.2"

위 내용은 Python 3.6 이하 버전에서 Pip 설치가 실패하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.