make uninstall?

Fredrik Lundh fredrik at pythonware.com
Mon Dec 13 12:38:26 EST 2004


Christopher J. Bottaro wrote:

>I installed Python-2.3.4 from source...
> configure && make && make install
>
> Now I want to remove it, but make uninstall doesn't work.  How do I
> uninstall it?

$ python
>>> import sys
>>> sys.executable
'/usr/somewhere/bin/python'
>>> sys.prefix
'/usr/somewhere'
>>> sys.version[:3]
'2.3'
>>> ^D

$ rm /usr/somewhere/bin/python
$ rm -rf /usr/somewhere/lib/python2.3
$ rm -rf /usr/somewhere/include/python2.3

</F> 






More information about the Python-list mailing list