GTG

How to uninstall properly once installed with bzr?

Asked by François Godbout

I'm on Fedora and wanted to try GTGonline, so from the setup.py python script, I've installed system wide though now cannot uninstall. I desperately lack knowledge to. If it's not too dumb a question, would someone help me?

Question information

Language:
English Edit question
Status:
Solved
For:
GTG Edit question
Assignee:
No assignee Edit question
Solved by:
Nimit Shah
Solved:
Last query:
Last reply:
Revision history for this message
Best Nimit Shah (nimit-svnit) said :
#1

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)

Revision history for this message
François Godbout (jfg4444) said :
#2

Thanks Nimit Shah, that solved my question.