I installed python 2.7.10 with PATH access and installed twilio correctly. However, when I try to execute the code, I get this error message
Traceback (most recent call last):
File "C:\Users\tmslvo\Google Drive\Desktop\send text.py", line 1, in <module>
from twilio.rest import TwilioRestClient
ImportError: No module named twilio.rest
Now I read that the reason may be that python cannot find the twilio package, so I tried
which -a python
which -a twilio
(on my windows command line), in this case I get
'which' is not recognized as an internal or external command,
operable program or batch file.
Does anyone have an idea of what I'm doing wrong?
Thanks!
source
share