I installed python 3.5.0 from the source code available at python.org. How can I remove that installed package?
Asked
Active
Viewed 4.4k times
3 Answers
10
From this source
You can do :
make cleanremoves any intermediate or output files from your source / build treeIf you can, running
make uninstallwill work.The last option is you have to manually uninstall it. Running
make -n install
Note : You must cd the file location where you make install
-3
I think this will work. Try this.
pip uninstall python==3.5.0
However, if python comes with dependencies, do not uninstall them.