Possible Duplicate:
How do I remove packages installed with Python's easy_install?
I am asking the same question as this. That did not help. How can I remove installed python modules like tidylib, beautifulsoup, etc…?
I have tried this:
pip uninstall tidylib
I get this error:
pip: error: No command by the name pip uninstall
I tried pip install -U pip, it upgrades pip, but the same error
Not only should you be using pip (you’ll need to install it), you should also be using virtualenv (you’ll need to install that too), to create isolated environments which can have different package configurations.
The only things that should go in your global environment are tools like those, and if necessary, packages that refuse to be installed any other way.