Using pip I am only able to uninstall for a few versions. I am fairly new to this, so please let me know if there is some way of deleting it. I am currently using Ubuntu 20.04. I had previously installed the packages with pip itself. But now pip no longer points to those versions. I tried commands like
pip3.6 uninstall package
python3.6 -m pip uninstall package
but none of that is even being recognised as a command. I do not wish to uninstall the python installation itself, just the various packages that I installed by myself when using those various versions.
I have installed python3.6 version as I can see it under my /usr and home directory, however when I run this python3.6 -m pip -V
or python3.6 -m pip list
I get the following output
Command 'python3.6' not found, did you mean:
command 'python3.9' from deb python3.9 (3.9.0-5~20.04)
command 'python3.8' from deb python3.8 (3.8.5-1~20.04.2)
Try: sudo apt install <deb name>
pip uninstall package
andpip3 uninstall package
notpip3.6 uninstall package
this is also related . – Raffa Feb 27 '21 at 16:00python3.6 -m pip -V
andpython3.6 -m pip list
return? Please [edit] your question to add the output. – Raffa Mar 01 '21 at 08:27python3.6
is not present on your system or not configured / linked correctly. You appear to havepython3.8
andpython3.9
. Given this information, I suggest you leave the installed python packages and read this – Raffa Mar 08 '21 at 08:53