Page 1 of 1

Uninstall Deluge after manual install

Posted: Thu Jun 14, 2007 9:03 pm
by stefan
Hi everybody!
After I installed deluge by using python setupy.py install, I want to remove it again properly. python setupy.py remove doesn't work. So what is the official way to remove a manual installation again? If it's not removed I can't install deluge anymore with my package system.
Maybe s.b can help me here....

Re: Uninstall Deluge after manual install

Posted: Thu Jun 14, 2007 10:32 pm
by zachtib
stefan wrote:Hi everybody!
After I installed deluge by using python setupy.py install, I want to remove it again properly. python setupy.py remove doesn't work. So what is the official way to remove a manual installation again? If it's not removed I can't install deluge anymore with my package system.
Maybe s.b can help me here....
distutils offers no uninstallation method, you have to remove everything manually, you'll want to remove:

Code: Select all

/usr/bin/deluge
/usr/lib/python2.X/site-packages/deluge*
/usr/share/deluge/*
/usr/share/applications/deluge.desktop
/usr/share/pixmaps/deluge.xpm

Re: Uninstall Deluge after manual install

Posted: Sat Jun 16, 2007 5:26 pm
by stefan
Thanks.

Re: Uninstall Deluge after manual install

Posted: Sat Jul 07, 2007 5:36 am
by shirish
zachtib wrote:
stefan wrote:Hi everybody!
After I installed deluge by using python setupy.py install, I want to remove it again properly. python setupy.py remove doesn't work. So what is the official way to remove a manual installation again? If it's not removed I can't install deluge anymore with my package system.
Maybe s.b can help me here....
distutils offers no uninstallation method, you have to remove everything manually, you'll want to remove:

Code: Select all

/usr/bin/deluge
/usr/lib/python2.X/site-packages/deluge*
/usr/share/deluge/*
/usr/share/applications/deluge.desktop
/usr/share/pixmaps/deluge.xpm
ah nice compilation zach

can somebody check if I did this right?

Code: Select all

 sudo rm /usr/bin/deluge
sudo rm -rf /usr/lib/python2.5/site-packages/deluge*
sudo rm -rf /usr/share/deluge/*
sudo rm -rf /usr/share/applications/deluge.desktop
sudo rm /usr/share/pixmaps/deluge.xpm

Re: Uninstall Deluge after manual install

Posted: Sun Jul 08, 2007 3:46 pm
by asymmetric
what about

Code: Select all

/usr/share/locale/*
?

Re: Uninstall Deluge after manual install

Posted: Sun Jul 08, 2007 6:53 pm
by markybob
asymmetric wrote:what about

Code: Select all

/usr/share/locale/*
?
this would do it for the locales:
rm `find /usr/share/locale -name 'deluge.mo'`

Re: Uninstall Deluge after manual install

Posted: Fri Jul 13, 2007 4:13 am
by jorge.vargas
FYI a while ago I added to the makefile a "make uninstall target" I believe it was right before 0.5.2

Re: Uninstall Deluge after manual install

Posted: Sat Jul 14, 2007 6:12 am
by shirish
jorge.vargas wrote:FYI a while ago I added to the makefile a "make uninstall target" I believe it was right before 0.5.2
AFAIK there is no make uninstall target yet in deluge. They are working on having it but around 0.6.0 IIRC . That would be cool :)