I am attempting to import twilio into python 2.7.13 shell for a project. I did so through cmd prompt and in the shell itself. This is the result in both cases:
import twilio
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import twilio
ImportError: No module named twilio
I have uninstalled and have reinstalled python and have done the same for twilio through pip with no issues in the process. (Twilio is sitting in my site-packages folder.) Clearly python is unable to find twilio, thus indicating a pathing problem. I attempted to make an environmental variable to path the two but to no avail.
I have scoured forums on here and other sites but cannot find a solution. Any help would be greatly appreciated. Thank you!