3

I have just installed a bunch of pip packages and now nothing works anymore.

with:

pip install PATH/*.txt

Therefore how to uninstall my packages?

PS.: I am running win7

maximus
  • 11,264
  • 30
  • 93
  • 124

1 Answers1

3

There are some good suggestions in this related thread: python setup.py uninstall

EDIT: Maybe you need to remove all files manually, and also undo any other stuff that installation did manually.

If you don't know the list of all files, you can reinstall it with the --record option, and take a look at the list this produces.

Community
  • 1
  • 1
dnlcrl
  • 5,022
  • 3
  • 32
  • 40
  • is there also a way to unistall everything with pip, because I installed packages from a *.txt file? – maximus Nov 01 '12 at 22:27
  • yep I have tried but i get: Cannot uninstall requirement project.txt, not installed BUT I have installed them... – maximus Nov 01 '12 at 22:43