Ubuntu – How to uninstall python3.5.0 installed from source code

software-uninstallsource code

I installed python 3.5.0 from the source code available at python.org. How can I remove that installed package?

Best Answer

From this source

You can do :

  1. make clean removes any intermediate or output files from your source / build tree

  2. If you can, running make uninstall will work.

  3. 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

Related Question