05-02-2019, 10:55 AM
I really don't recommend changing your distribution's python via pip. What you are essentially doing by callingĀ
is circumenventing your package manager and putting your system in a weird state. What you should do instead is use pip's --user flag to install packages locally for your user.
Furthermore I think on ubuntu there is a difference between pip and pip3, so it makes no sense to compare pip with python3.
It doesn't look like you have a specific problem with your python installation so I don't know what to tell you.
Quote:sudo pip [...]
is circumenventing your package manager and putting your system in a weird state. What you should do instead is use pip's --user flag to install packages locally for your user.
Furthermore I think on ubuntu there is a difference between pip and pip3, so it makes no sense to compare pip with python3.
It doesn't look like you have a specific problem with your python installation so I don't know what to tell you.