>  기사  >  백엔드 개발  >  오류: Python 패키지 설치 시 외부 관리 환경

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

DDD
DDD원래의
2024-11-15 13:08:02149검색

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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