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!.
_______________________________________________
maemo-developers mailing list
[email protected]
https://maemo.org/mailman/listinfo/maemo-developers

Reply via email to