When I run pip show pip on Powershell, it returns me : c:\users\thomas\anaconda3\lib\site-packages
and when I run python -m pip show pip, it returns me : c:\python310\lib\site-packages
I would like to know if there is a way to replace the default current pip to the one when I run python -m pip show pip without using aliases and virtual environement.
I tried to write a pip.ini file with :
[global]
target = c:\python310\lib\site-packages
but it hasn't change anything.

