将 wxpython 模块导入到 python 中
我刚刚安装了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 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.