我在 windows 上使用 wxPython 时遇到此错误“import wx import error no module named wx”
I got this error while using wxPython on windows " import wx import error no module named wx "
我是 wx 的新手Python。我刚刚在我的 Windows 7 上安装了 Python 2.7.9 和 wxPython for 2.7。
当我尝试 运行 "helloworld" 文件时
#!/usr/bin/env python
import wx
app = wx.App(False) # Create a new app, don't redirect stdout/stderr to a window.
frame = wx.Frame(None, wx.ID_ANY, "Hello World") # A Frame is a top-level window.
frame.Show(True) # Show the frame.
app.MainLoop()
来自官方website.I得到这个错误
c:\Workspace>python hellowword.py
Traceback (most recent call last):
File "hellowword.py", line 2, in <module>
import wx
ImportError: No module named wx
我浏览了 stacksoverflow 上的其他帖子,例如Wx not importing
Can't load packages due to 'No module named wx' error
但其中 none 有效。
我已经将 wxPython 的目录添加到路径 "C:\Python27\Lib\site-packages"。还是失败了。
有人可以帮我解决这个问题吗?
提前致谢!
我已经通过重新安装 python 和 wxPython 解决了这个问题,并按照此说明逐步进行。 https://www.youtube.com/watch?v=NMjV_HGLAQE
我是 wx 的新手Python。我刚刚在我的 Windows 7 上安装了 Python 2.7.9 和 wxPython for 2.7。 当我尝试 运行 "helloworld" 文件时
#!/usr/bin/env python
import wx
app = wx.App(False) # Create a new app, don't redirect stdout/stderr to a window.
frame = wx.Frame(None, wx.ID_ANY, "Hello World") # A Frame is a top-level window.
frame.Show(True) # Show the frame.
app.MainLoop()
来自官方website.I得到这个错误
c:\Workspace>python hellowword.py
Traceback (most recent call last):
File "hellowword.py", line 2, in <module>
import wx
ImportError: No module named wx
我浏览了 stacksoverflow 上的其他帖子,例如Wx not importing Can't load packages due to 'No module named wx' error
但其中 none 有效。
我已经将 wxPython 的目录添加到路径 "C:\Python27\Lib\site-packages"。还是失败了。
有人可以帮我解决这个问题吗?
提前致谢!
我已经通过重新安装 python 和 wxPython 解决了这个问题,并按照此说明逐步进行。 https://www.youtube.com/watch?v=NMjV_HGLAQE