I try to import the PyDrive
module in my PyCharm
project : from pydrive.auth import GoogleAuth
.
I tried different things :
- Installing it directly from the project interpreter
- Download it with a pip command and import it with the path for the poject interpreter
- The same thing in Linux
Nothing works. Each time PyCharm recognize the module and even sugest the auto-completion, but when I run the project it keeps saying ImportError: No module named pydrive.auth
Any suggestion ?
EDIT : When I put directly the pydrive folder in my repository, and this time : ImportError: No module named httplib2
from the first import of PyDrive.
My path is correct and httplib2 is again in my PyCharm project