[maemo-developers] how to make install package for applications written in python

From: Diego Escalante dieguito at gmail.com
Date: Tue Apr 24 23:06:44 EEST 2007
In case it's useful for someone, when I play with setuptools in python and do:

$ sudo python setup.py install

I later find myself looking for setup.py uninstall, sadly there's no
uninstall. So the other day I came to this solution:

$ sudo ./setup.py install --record a
$ for i in `cat a`; do echo "bye $i"; sudo rm -f $i; done

Hope it helps someone!.

More information about the maemo-developers mailing list