Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'debug': 0.03; 'subject:Python': 0.05; '(especially': 0.07; 'installed.': 0.07; 'python': 0.08; '>to': 0.09; 'down).': 0.09; 'libs': 0.09; 'mapped': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'stored': 0.13; '>nothing': 0.16; 'bieber': 0.16; 'directory...': 0.16; 'email addr:ix.netcom.com': 0.16; 'email name:wlfraed': 0.16; 'from:addr:ix.netcom.com': 0.16; 'from:addr:wlfraed': 0.16; 'from:name:dennis lee bieber': 0.16; 'keys.': 0.16; 'message- id:@4ax.com': 0.16; 'pythonwin': 0.16; 'received:wlfraed': 0.16; 'subject:Cannot': 0.16; 'uninstalling': 0.16; 'url:netcom': 0.16; 'url:wlfraed': 0.16; 'win7': 0.16; 'wulfraed': 0.16; 'wrote:': 0.18; 'problem?': 0.18; '(which': 0.19; 'url:home': 0.21; 'maybe': 0.21; 'dec': 0.22; 'itself,': 0.23; 'received:166': 0.23; 'libraries': 0.24; 'tree': 0.25; "i'm": 0.26; 'tried': 0.27; '(and': 0.28; 'lee': 0.28; 'fine.': 0.29; 'rid': 0.29; 'worked': 0.29; 'seem': 0.30; 'elsewhere': 0.30; 'remains': 0.30; 'installed': 0.31; 'version': 0.32; 'does': 0.32; 'remaining': 0.32; 'thu,': 0.32; "isn't": 0.33; 'header:X-Complaints-To:1': 0.33; 'there': 0.33; 'done': 0.34; 'to:addr:python-list': 0.34; 'probably': 0.34; 'anything': 0.34; 'keys': 0.34; 'short,': 0.34; 'something': 0.35; 'install': 0.35; 'charset:us-ascii': 0.37; 'but': 0.37; 'run': 0.37; 'entry': 0.37; 'not,': 0.37; 'using': 0.38; 'received:org': 0.38; 'subject:from': 0.38; 'manually': 0.39; 'finding': 0.39; 'should': 0.39; 'else': 0.39; 'files': 0.39; 'to:addr:python.org': 0.40; 'might': 0.40; 'packages': 0.40; '2011': 0.61; 'your': 0.61; 'order': 0.62; 'took': 0.63; 'online': 0.71; 'press': 0.72; 'dennis': 0.73; 'reverse': 0.73; 'panel': 0.82; 'corrupted': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Dennis Lee Bieber Subject: Re: Cannot Remove Python Libs from XP Date: Thu, 22 Dec 2011 16:21:31 -0500 References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: mobile-166-147-103-164.mycingular.net X-Newsreader: Forte Agent 6.00/32.1186 X-No-Archive: YES X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 43 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1324588907 news.xs4all.nl 6886 [2001:888:2000:d::a6]:59200 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17752 On Thu, 22 Dec 2011 09:53:04 -0800, "W. eWatson" wrote: >I have three py libs and the python program itself, 2.52, installed on >an 6 year old HP Laptop. I decided to remove them, and took removed >Python with the Control Panel ?Add/Remove icon. Worked fine. When I try >to remove any of the remaining libs, press the add/remove button does >nothing but blink. How do I get around this problem? It would probably have been better to remove the libraries first (especially if their installers /used/ Python to do the install; the uninstaller would then likely also have used that version of Python). In short, uninstalling a set of related packages should be done in the reverse order of how they were installed. If you don't have anything private stored in the remains of the Python2.5.2 install directory... Just delete the entire directory tree (which should get rid of any left-over files from the other libraries). Removing them from the Add/Remove control might be achieved by using a registry cleaner; if not, manually scanning the registry for those package names and deleting the registry keys may suffice (back up the registry first -- export everything from the top down). Then run a registry cleaner, as there may be stray GUID keys that eventually mapped to the deleted keys. Lets see.... {booting even older WinXP laptop -- I'm using a Win7 laptop with data-card for current online activity} HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\... Look for the particular packages (and anything else you may also have removed just in case something got left behind) and delete the keys. (Interesting -- I have an entry for wxPython, but no entry for Python or ActiveState... They may be stuffed elsewhere -- I also seem to have a corrupted search path; maybe happened last time I tried using the laptop to debug one of your queries; Pythonwin isn't finding win32ui) -- Wulfraed Dennis Lee Bieber AF6VN wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/