I can run the simple Hello App Google App Engine application on the local host without any problems. However, when I add the line "import gdata.auth" to my Python script, I get "ImportError: There is no module named gdata.auth".
I installed the gdata module and added the following line to my .bashrc:
export PYTHONPATH = $ PYTHONPATH: /Library/Python/2.5/site-packages/
Is there anything else I need to do? Thanks.
EDIT: It is strange that if I run python from the shell and type "import gdata.auth", I do not get an error.
source share