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 :
make clean
removes any intermediate or output files from your source / build treeIf you can, running
make uninstall
will 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