Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

I recently upgraded to Ubuntu 23.04. Things are mostly smooth. However, recently I encountered an issue that was not present in the previous version.

I was trying to install a package using Pip, a command line based Python package manager. It works great usually but it threw an error this time:

error: externally-managed-environment

Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

Here’s the complete error message if you want to read it:

× This environment is externally managed
╰─> To install Python packages system-wide, try apt install
    python3-xyz, where xyz is the package you are trying to
    install.
    
    If you wish to install a non-Debian-packaged Python package,
    create a virtual environment using python3 -m venv path/to/venv.
    Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
    sure you have python3-full installed.
    
    If you wish to install a non-Debian packaged Python application,
    it may be easiest to use pipx install xyz, which will manage a
    virtual environment for you. Make sure you have pipx installed.
    
    See /usr/share/doc/python3.11/README.venv for more information.

note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
hint: See PEP 668 for the detailed specification.

And if you read the details, you’ll understand why you see this error.

Reason behind the ‘Externally Managed Environment’ Error

Ubuntu 23.04, Fedora 38 and probably other recent distribution versions are implementing this enhancement on the use of Python packages.

The change has been done to avoid the “conflict between OS package managers and Python-specific package management tools like pip. These conflicts include both Python-level API incompatibilities and conflicts over file ownership.”

More details can be find on this page.

PEP 668 – Marking Python base environments as “externally managed” | peps.python.orgPython Enhancement Proposals (PEPs)Handling Externally Managed Environment Error With Pip in Ubuntu 23.04peps.python.org

What are your options?

You can do three things when you try to install a Python package and see this error.

  1. Install the native package
  2. Create virtual environments in Python
  3. Use Pipx (recommended)

Let’s see them one by one.

Option 1: Go for native package

I understand that Pip gives a comfortable way of installing Python packages. However, some Python applications are also packaged as APT or other native packages. Search for it in your distribution’s repositories and install it from there if it is available.

For example, I was trying to install WoeUSB-ng. If I was using Arch Linux, the same package is available from AUR.

Option 2: Use Python virtual environment

If you must use a Python package, you have to isolate it in Python virtual environment.

With the help of virtual environments, you can use different versions of package dependencies and Python. This way, you avoid any conflicts between the packages.

📋This method is suitable for software developers and programmers working on Python projects.

Let’s quickly see how you do it. Usually, Python should already have the tool for creating virtual environments.

Use the command below to create a virtual environment for your project. Replace project_name with your project’s name, of course.

python3 -m venv .venv/project_name

If you see venv errors related, you may have to install it.

sudo apt install python3-venv

Now, you’ll see a directory named .env in your home directory and inside the .env, you’ll have the project directory.

Here’s the exciting part. Each project directory will have its own copy of Python and Pip in it.

Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

That’s your virtual Python environment. You can use this ‘local binary’ for installing Python packages using Pip inside this virtual environment like this:

.venv/project_name/bin/pip install package_name
Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

Remember that the installed Python package won’t be available system wide.

3. Use Pipx tool (recommended)

What you saw above involves manual work. Pipx automates it.

It automatically creates a new virtual environment for each app you install. Not only that. It also creates a link to it in .local/bin. This way, the user who installed the package can run it from anywhere in the command line.

I guess that’s what most desktop Linux users want here.

Install pipx on Ubuntu using this command:

sudo apt install pipx

It will probably install a huge number of dependencies:

Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

Now add it to the PATH so that you can run from anywhere.

pipx ensurepath
Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

✋You must close the terminal and log back in for the changes to occur.

Great! Now you can install Python packages using Pipx instead of Pip:

pipx install package_name

Here’s an example.

Handling Externally Managed Environment Error With Pip in Ubuntu 23.04

💡To remove a package installed with pipx, use pipx uninstall package_name command.

Conclusion

Pip is a good tool for getting Python packages on the system. I think it was always meant for Python programmers, not for the end users. Clearly, it cannot be used as a replacement for the native distribution packages and the Python devs have made it clear.

The good thing is that alternatives exist for both programmers and end users.

I hope this tutorial helped you understand and overcome the externally-managed-environment error with Pip in Linux.

Please let me know if you have questions or suggestions.

Original Article