Question #246164 on Getting Things GNOME! changed: https://answers.launchpad.net/gtg/+question/246164
Status: Open => Answered Nimit Shah proposed the following answer: Hi Francois, You need to uninstall each and every file individually. You would not be having the list of files installed via setup.py so here is what you can do: python setup.py install --record files.txt Once you want to uninstall you can use xargs to do the removal: cat files.txt | xargs rm -rf (Borrowing the answer from stackoverflow: (http://stackoverflow.com/a/1550235/1539816) -- You received this question notification because you are a member of Gtg developers, which is an answer contact for Getting Things GNOME!. _______________________________________________ Mailing list: https://launchpad.net/~gtg Post to : gtg@lists.launchpad.net Unsubscribe : https://launchpad.net/~gtg More help : https://help.launchpad.net/ListHelp