I have installed Google APIs Client Library for Python via easy_install.py --upgrade google-api-python-client
. When I run a script that contains from oauth2client.tools import argparser, run_flow
returns:
Traceback (most recent call last):
File "C:\Users\name\Desktop\file.py", line 9, in <module>
from oauth2client.tools import argparser, run_flow
ImportError: cannot import name argparser
I am using python 2.7.6 64x in win 8. The strange thing is that doing the same procedure in another pc in win 7 it working perfect. What is going wrong?
Thanks.