How can I uninstall python3.5.0 installed from source code?

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


Solution 1:

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