오류: Python 패키지 설치 시 외부 관리 환경

DDD
풀어 주다: 2024-11-15 13:08:02
원래의
153명이 탐색했습니다.

Symptoms

I attempted to install a Python package using this command.

pip3 install [package-name]
로그인 후 복사

And then this error was thrown.

Error: externally-managed-environment on python package installation

Error: externally-managed-environment on python package installation

Description

  • Two types of Python are used in a single MacOS machine - User-specific and System-wide packages.
  • System-wide packages are shared by all the users, and even system package managers like apt. Installing user-specific packages as system-wide packages is very dangerous because it can conflict with system package managers if they run some Python scripts.

Solution

  1. Create path/.config/pip/pip.conf and type this script.

    [global]
    break-system-packages = true
    user = true
    
    로그인 후 복사
  2. Install pipenv to manage dependencies per project. The pip.conf file let the command run with --break-system-packages and --user options.

    pip3 install pipenv
    
    로그인 후 복사
  3. Run a file with the all project dependencies in a virtual environment

    pipenv run python [file-name] .py
    
    로그인 후 복사
  4. Otherwise, you could run up a virtual environment instance and run the python file.

    pipenv shell
    python [file-name].py
    
    로그인 후 복사

위 내용은 오류: Python 패키지 설치 시 외부 관리 환경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿