I just installed Ubuntu, and it comes with default a default Python version of 3.6.7. I installed Python 3.7.3 by following these instructions (changing 3.7.2 to 3.7.3 as appropriate) and it all worked well.
Now I have two Python 3 versions, both working. I would now like to remove Python 3.6.7 and keep 3.7.3.
How should I go about doing this?
pip3 install ..
it doesn't work it just installs for python 3.6 and python 3.7 doesn't get installation – User19 Apr 06 '19 at 19:33pip3.7
. – Murphy Apr 06 '19 at 19:50pip3.7 install requests
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/local/lib/python3.7/site-packages/chardet' Consider using the--user
option or check the permissions. – User19 Apr 06 '19 at 19:57