I installed Requests 2.0.0 library for Python, and I want to uninstall it. Is there some easy way to uninstall it?
Thanks in advance.
I installed Requests 2.0.0 library for Python, and I want to uninstall it. Is there some easy way to uninstall it?
Thanks in advance.
If you used pip, you can probably do something like this:
pip uninstall requests
Otherwise, you'll have to delete the files manually. If you used easy_install, you'll also have to edit easy-install.pth and remove the entry for requests from there.
See also python setup.py uninstall