I have installed the python "requests" module using pip:
C:\Users\Isaiah>c:/python33/scripts/pip.exe install requests
Downloading/unpacking requests
Installing collected packages: requests
Successfully installed requests
Cleaning up...
C:\Users\Isaiah>python.exe
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named requests
And get the error shown above when I try to import it. What gives?