Sujet : Re: Pip installs to unexpected place
De : grant.b.edwards (at) *nospam* gmail.com (Grant Edwards)
Groupes : comp.lang.pythonDate : 17. Apr 2025, 22:15:27
Autres entêtes
Message-ID : <mailman.18.1744924528.3008.python-list@python.org>
References : 1 2 3 4 5 6 7 8
User-Agent : slrn/1.0.3 (Linux)
On 2025-04-17, Left Right via Python-list <
python-list@python.org> wrote:
Also... when installing stuff with pip --user, it is always a package
that is not installed for the system (usually not even available for
the system). How can that "break system packages"?
>
pip installs dependencies. Dependencies may disagree on the version
with the system packages.
Good point. I don't generally allow pip to install dependencies, so I
forgot about that source of conflict. But as far as I can see, it
still can only break stuff for the user, not for the system. The
system is never going to look in my ~/.local/lib/python* directories.
-- Grant