Home  >  Article  >  Backend Development  >  Error: externally-managed-environment on python package installation

Error: externally-managed-environment on python package installation

DDD
DDDOriginal
2024-11-15 13:08:02149browse

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
    

The above is the detailed content of Error: externally-managed-environment on python package installation. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn