On Feb 11, 2022, at 13:33, Dorian ROSSE <[email protected]> wrote:
> 
>  Hello,
> 
> 
> Does it is better to '''python3 -m pip install the_program''' instead '''pip3 
> install the_program" when it is missing in the downloader primary ?

Both are essentially the same. The pip executable uses the pip module. 

HOWEVER…

You should never run either as root on a Fedora system that you expect to ever 
use “dnf” on at a later point. Pip can and will install libraries that can 
break OS tools that are written in python (such as dnf). Not only that, but the 
RPM database won’t know about the new or updated libraries, causing general 
confusion. 

If you want to install extra modules, use the “venv” module to create a 
separate python environment to install into, which doesn’t replace system 
libraries. It’s fairly painless and you can have multiple environments, 
activated on demand. 

--
Jonathan Billings
_______________________________________________
users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to