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,832
  • 9
  • 37
  • 55

1 Answers1

2

Install pip using easy_install:

 easy_install pip

and then:

pip uninstall <package>

PS. Probably duplicate.

Community
  • 1
  • 1
pancakes
  • 682
  • 5
  • 8