chriskiehl / GooeyExamples

Example programs to Demonstrate Gooey's functionality

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no module name wx

mlane706 opened this issue · comments

I'm getting the following errors when I run simple_demo.py

import simple_demo.py
Traceback (most recent call last):
File "", line 1, in
File "simple_demo.py", line 7, in
from gooey import Gooey, GooeyParser
File "gooey/init.py", line 2, in
from gooey.python_bindings.gooey_decorator import Gooey
File "gooey/python_bindings/gooey_decorator.py", line 14, in
from gooey.gui import application
File "gooey/gui/application.py", line 5, in
import wx
ImportError: No module named wx

Any recommendations?

You have to install wxPython in your system. In MacOS:

brew install wxmac
brew install wxpython
commented

Dependency installation instructions have been added to the README.