import numpy
import Tkinter
import scipy
#executible fails with this import statement


'''
import matplotlib

print "hello"

root = Tkinter.Tk()
frame = Tkinter.Frame(root)
label = Tkinter.Label(frame, text='hello world!').grid(row=0,column=0)
frame.grid(row=0,column=0)
root.minsize(400,400)
root.maxsize(1400,900)
root.mainloop()
'''
