无法在 python 中安装 libgmail

发布于 2024-09-14 02:14:04 字数 465 浏览 7 评论 0 原文

我是 python 的新手,正在尝试安装 libgmail .. 这就是我得到的:

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

我认为 libgmail 比我的 python 版本有点旧,但不知道如何解决它,请帮助:-)

提前致谢 阿米托斯80

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜声 2024-09-21 02:14:04

您使用的是哪个版本的 Python? 3.x 可能不将 exec 理解为语句(在 Python 3 中,exec,就像 print 变成了一个函数,并且是不再是特殊的关键字/语句)。

解决方案是找到 Python 3 的 libgmail 端口,或者自己安装 Python 2.7。

Which version of Python are you using? It's possible it's 3.x which doesn't understand exec as a statement (in Python 3, exec, like print became a function and is no longer a special keyword/statement).

The solution is to either find a port of libgmail to Python 3, or install Python 2.7 for yourself instead.

如日中天 2024-09-21 02:14:04

您正在安装什么版本的 libgmail?
我成功安装了 mechanize(libgmail 所依赖的)和 libgmail 作者:easy_install 分钟前。

What version of libgmail are you installing?
I succesfully installed mechanize( on which libgmail was depending) and libgmail by easy_install minute ago.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文