delete all folders for python 3 7 make install on ubuntu

Solutions on MaxInterview for delete all folders for python 3 7 make install on ubuntu by the best coders in the world

showing results for - "delete all folders for python 3 7 make install on ubuntu"
Constanza
07 May 2017
1# The following commands will remove your make altinstall-ed python:
2
3rm -f /usr/local/bin/python2.7
4rm -f /usr/local/bin/pip2.7
5rm -f /usr/local/bin/pydoc
6rm -rf /usr/local/bin/include/python2.7
7rm -f /usr/local/lib/libpython2.7.a
8rm -rf /usr/local/lib/python2.7
9
10# You might also have to do
11
12rm -f /usr/local/share/man/python2.7.1
13rm -rf /usr/local/lib/pkgconfig
14rm -f /usr/local/bin/idle
15rm -f /usr/local/bin/easy_install-2.7
16
similar questions