将 wxpython 模块导入到 python 中

发布于 2024-12-22 07:37:42 字数 369 浏览 0 评论 0原文

我刚刚安装了 wxPython 2.8,内容如下:

./configure
make 
make install

一切都已安装,但是当我这样做时:

import wx

在 python 中,我

ImportError: No module named wx

确实意识到 wx 不在 python 的路径上。我怎样才能在python的路径上得到它?我尝试过 sys.path.append,但由于某种原因它不起作用,它只是暂时将其添加到路径中。

我正在运行 python 2.7.2 (我不知道这是否重要)

I just installed wxPython 2.8 with the following:

./configure
make 
make install

Everything was installed but when I do:

import wx

in python, I get

ImportError: No module named wx

I do realize that wx is not on python's path. How can I get it on python's path? I've tried sys.path.append, but for some reason that doesn't work and it only adds it to the path temporarily.

I'm running python 2.7.2 (I don't know if that matters)

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

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

发布评论

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

评论(1

羁拥 2024-12-29 07:37:42

由于您使用的是 Linux Mint,因此可以运行命令 sudo apt-get install python-wxgtk2.8 python-wxtools wx2.8-i18n,并且应该得到你去吧。

Since you're on Linux Mint, you can run the command sudo apt-get install python-wxgtk2.8 python-wxtools wx2.8-i18n, and that should get you going.

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