3
votes
1answer
150 views

How to silently uninstall Python 2.7 on Windows?

Does anyone know how to silently uninstall Python 2.7 - i.e. uninstall it unattended, with no need for user interaction? I need to do it as part of an uninstallation script that installs a bunch of ...
3
votes
2answers
235 views

Too many different Python versions on my system and causing problems

During the past years, I have installed many Python libraries with various Python versions. To make them ready to work immediately, I installed them blindly without control. Currently they're causing ...
0
votes
1answer
60 views

What happens if pip uninstall fails?

What happens when pip uninstall in virtualenv fails? Is it smart enough to reinstall package or it raise an exception and leave virtualenv broken? I'm making script which uninstall packages, run ...
0
votes
1answer
119 views

How to uninstall Python site-package which was installed using “python setup.py develop”?

pip freeze result show: -e git+git@github.com:Tallmad/zeus@6155c80f5b87cba0aeb8c1bfb6fc6b6dd86b0fa8#egg=zeus-dev It fails: pip uninstall ...
0
votes
1answer
176 views

How to Uninstall .exe setups Installed programs showing in control panel using Python

I gone through this code but this code works for only MSI installer but I wanted to Uninstall other than msi packages. import wmi c = wmi.WMI() print ("Searching for matching products...") for ...
1
vote
0answers
135 views

What is the most painless way to remove one version of python and not the other on OSX 10.7.4?

I accidentally installed 64 bit python a few weeks ago, and now all of my programs jump for it by default, instead of the more functional 32 bit python. Is there a painless way to uninstall 64 bit ...
2
votes
1answer
573 views

Error when trying to uninstall Macports

I'm using this link to uninstall macports and instead install homebrew. However, I run into an error on the first step. I run sudo port -f uninstall installed my terminal (I'm on a mac btw) and it ...
1
vote
1answer
1k views

Why 'build applet' app in python 2.7 application folder is unable to delete in osx 10.7.3?

I installed python 2.7 on in my mac air osx 10.7,but i found out that python 3.2 is recent version, so I decided to delete python 2.7 and replace it with version 3.2. As I delete python 2.7, I ...
2
votes
1answer
1k views

How Can I Downgrade from Python 3.2 to 2.7?

I am trying to uninstall Python 3.2 and go back to 2.7, I do not have much experience with Python, and as I am learning now, it is becoming increasingly difficult to manage all of the work arounds ...
-1
votes
1answer
288 views

Best way to uninstall/delete everything related to Emacs/Python/Django on OSX Lion

I am starting (and loving it) with python django or emacs on my OSX Lion. However I am pretty sure that I messed some stuff, and now I get some errors due to my ignorance when I was installing stuff ...
0
votes
1answer
161 views

Change the version of python 2.6 to python 2.5 or 2.4

Python-igraph is giving error when I install it on python 2.6 .SO, i wish to change it to python 2.5 or 2.4. I need to remove python2.6 and install python 2.5. Please show me a way to accomplish ...
3
votes
1answer
1k views

Uninstall a netbeans 7.0.1 plugin, netbeans doesn't start

Netbeans 7.0.1 on Vista doesn't start after installing python plugin. How do I uninstall plugins manually? Is there a command line argument to start netbeans without plugins? If not, this should be ...
1
vote
1answer
381 views

How do I completely uninstall Python and all its packages?

I installed some packages , but I think either some of the packages corrupted or are conflicting with versions Is there a good way to just uninstall every package and python itself?
3
votes
1answer
430 views

Setup.py for uninstalling via pip

According to another question, pip offers a facility for uninstalling eggs, which it's help also indicates. I have a project that, once installed, has a structure in my local site-packages folder ...
7
votes
1answer
15k views

Installing/uninstalling my module with pip

I am going through the Learn Python the Hard Way, 2nd Edition book, and I am stuck on this problem: "Use your setup.py to install your own module and make sure it works, then use pip to uninstall it." ...
3
votes
1answer
176 views

Deciding which package manager was used to install a Python package

I want to remove a Python package, let's say Satchmo. But I don't remember which tool I used to install it. I can think of the following ways: Downloading source distutils distribute SetupTools ...
3
votes
2answers
2k views

Uninstalling a python module in ubuntu

I have to delete a python module named "django" (a popular one), because I installed the wrong version (1.3 - beta in py-2.6). How to uninstall this module? Please explain, because I've used python ...
3
votes
1answer
1k views

How to uninstall wxpython 2.8 on Mac OSX 10.6

Some details of my machine and installed packages before proceeding further: Mac OSX version: 10.6.6 Python version: Activestate Python 2.7.1 wxpython version: wxpython 2.8 (uses Carbon API hence ...
38
votes
3answers
36k views

How to uninstall Python 2.7 on a Mac OS X 10.6.4?

I want to completely remove Python 2.7 from my Mac OS X 10.6.4. I managed to remove the entry from the PATH variable by reverting my .bash_profile. But I also want to remove all directories, files, ...
2
votes
3answers
7k views

How to completely remove Python from a Windows machine?

I installed both Python 2.7 and Python 2.6.5. I don't know what went wrong, but nothing related to Python seems to work any more. e.g. "setup.py install" for certain packages don't recognize the ...
1
vote
1answer
876 views

How to work with a new Python installation while having an old one installed?

After a fresh installation of my Windows dev machine, I installed Python 2.7. Quickly I learnt that this was a mistake as many of the packages I use only work on Python 2.6. So I installed 2.6 also ...
1
vote
2answers
3k views

Django Python Macports

I installed Django via Macports. I wasted a lot of time on making it work. It still does not work. I would like to COMPLETELY uninstall Django (Macports) and install with the easy install (DJANGO). ...
123
votes
6answers
45k views

python setup.py uninstall

I have installed a python package with python setup.py install. How do I uninstall it?
2
votes
1answer
2k views

How do I deactivate an egg?

I've installed cx_Oracle (repeatedly) and I just can't get it to work on my Intel Mac. How do I deactivate/uninstall it?