1

That's it, I've some package installed using setuptools i.e. I ran the command python setup.py install from the package source.

My question is, how do I uninstall the package or upgrade it?

Shafiul
  • 2,682
  • 9
  • 33
  • 53

1 Answers1

2

Install pip using easy_install:

 easy_install pip

and then:

pip uninstall <package>

PS. Probably duplicate.

Community
  • 1
  • 1
pancakes
  • 642
  • 4
  • 7