i’m a newbie in python , and trying to install libgmail ..
this is what i get :
C:\libgmail-0.1.11>setup.py
Traceback (most recent call last):
File "C:\libgmail-0.1.11\setup.py", line 7, in <module>
import libgmail
File "C:\libgmail-0.1.11\libgmail.py", line 96
exec data in {'__builtins__': None}, {'D': lambda x: result.append(x)}
^
SyntaxError: invalid syntax
i think that the libgmail is a bit older then my python version , but dont know how to solve it, please help 🙂
thanks in advance
Amitos80
Which version of Python are you using? It’s possible it’s 3.x which doesn’t understand
execas a statement (in Python 3,exec, likeprintbecame a function and is no longer a special keyword/statement).The solution is to either find a port of
libgmailto Python 3, or install Python 2.7 for yourself instead.