pypa / installer

A low-level library for installing from a Python wheel distribution.

Home Page:https://installer.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

prefix always ends with /local/ on ubuntu

nlgranger opened this issue · comments

Inside an ubuntu:22.04 container, I have installed build, installer and virtualenv in the latest version using pip.
The prefix value is concatenated with /local/

Steps to reproduce:

docker run --rm -it ubuntu:22.04
apt update
apt install python3-pip git
pip install -U build installer virtualenv
git clone https://github.com/pypa/installer.git
cd installer/
python3 -m build --wheel
python3 -m installer dist/*.whl --destdir=sysroot --prefix=/someprefix
find sysroot/

On debian it works normally.

Nothing that we can do here. This is an issue with the Python that ships with Ubuntu and the way they've modified it that breaks things.

https://discuss.python.org/t/linux-distro-patches-to-sysconfig-are-changing-pip-install-prefix-outside-virtual-environments/18240

I thought installer wasn't affected because it runs inside a virtualenv. Thanks for the pointer.