Error: externally-managed-environment on python package installation

DDD
Release: 2024-11-15 13:08:02
Original
153 people have browsed it

Symptoms

I attempted to install a Python package using this command.

pip3 install [package-name]
Copy after login

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
    
    Copy after login
  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
    
    Copy after login
  3. Run a file with the all project dependencies in a virtual environment

    pipenv run python [file-name] .py
    
    Copy after login
  4. Otherwise, you could run up a virtual environment instance and run the python file.

    pipenv shell
    python [file-name].py
    
    Copy after login

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!

source:dev.to
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template