I'm getting a very strange error w/ the requests library. When I run:
>>> import requests
in the console it works fine, but when I run the script:
import requests
print('done')
I get an error that it can't find a related module, utils (believe its email.utils)
ImportError: No module named utils
All other modules work load normally. Also, it's just in pycharm where the error occurs - things work fine in sublime text. Any thoughts?