I downloaded the Enthought Tool Suite through this website: http://code.enthought.com/downloads/.
When I write put this code in the python script:
from traits.api import HasTraits, Str, Int
from traitsui.api import View, Item
from traitsui.menu import OKButton, CancelButton
class SimpleEmployee(HasTraits):
first_name = Str
last_name = Str
department = Str
employee_number = Str
salary = Int
view1 = View(Item(name = 'first_name'),
Item(name = 'last_name'),
Item(name = 'department'),
buttons = [OKButton, CancelButton])
sam = SimpleEmployee()
sam.configure_traits(view=view1)
I got an error that says:
"ImportError: No module named traits.api "
How do I remedy this? I don't know what I'm missing. Please help me!