I have a python script which runs perfectly on OSX. After installing python, numpy and matplotlib on windows I cannot understand why the same does not run on windows.
Do you have any idea?
import numpy
from Tkinter import *
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
# main App class
class App:
def __init__(self, master):
# Create a container
frame = Frame(master)
frame.pack()
root = Tk()
app = App(root)
root.mainloop()
This is the error I get in windows
After installing dateutil I have a new error
I intalled also pyparsing, and now getting the error that I miss the six package, but I don't have any idea how to install that now.