Open
Description
pip version
main
Python version
all
OS
all
Additional information
When a pip config is installed in an installation prefix $PREFIX/pip.conf
, $PREFIX/bin/python -m pip
correctly picks up the config. When one makes a virtual environment with $PREFIX/bin/python -m venv ./my-venv
then ./my-venv/bin/pip
does not pick up the config.
It is questionable if this is a bug or a feature request, but essentially, I believe that pip should be looking in sys.base_prefix
as well as sys.prefix
for a config file.
Description
No response
Expected behavior
No response
How to Reproduce
Starting with a non-virtual environment (e.g. a conda environment):
$ touch ./env/pip.conf
$ pip config debug
env_var:
env:
global:
/etc/xdg/xdg-ubuntu/pip/pip.conf, exists: False
/etc/xdg/pip/pip.conf, exists: False
/etc/pip.conf, exists: False
site:
/media/important/github/pypa/pip/env/pip.conf, exists: True
user:
/home/pelson/.pip/pip.conf, exists: False
/home/pelson/.config/pip/pip.conf, exists: False
$ python -m venv ./venv
## BEWARE THAT YOUR VENV HAS THE BUNDLED PIP, SO INSTALL A NEWER PIP FOR DEBUGGING
$ ./venv/bin/pip install -e /path/to/pip/repo
$ ./venv/bin/pip config debug
env_var:
env:
global:
/etc/xdg/xdg-ubuntu/pip/pip.conf, exists: False
/etc/xdg/pip/pip.conf, exists: False
/etc/pip.conf, exists: False
site:
/media/important/github/pypa/pip/venv/pip.conf, exists: False
user:
/home/pelson/.pip/pip.conf, exists: False
/home/pelson/.config/pip/pip.conf, exists: False
What I want to see for a venv is that the base_prefix
is searched as well as the prefix
.
Output
No response
Code of Conduct
- I agree to follow the PSF Code of Conduct