tkinter in Spyder

2019-05-28 15:43发布

I am trying my first steps in tkinter. I use Spyder as IDE in Python 3.5.1 |Anaconda 4.0.0.

I want to run the very simple script below but it always crashes my Spyder. In a normal shell/bash it runs though and opens the canvas.

import tkinter as tkr

tk = tkr.Tk()
canvas = tkr.Canvas(tk, width=500, height=500)
canvas.grid()
tk.mainloop()

Under Preferences for the Ipython Console I already tried different settings (i.e. Qt, Automatik, Tkinter) but none of it did help.

What am I doing wrong (and how can I do it better)?

many thanks in advance

1条回答
走好不送
2楼-- · 2019-05-28 16:09

update to Spyder 3.0.1

https://pythonhosted.org/spyder/

https://github.com/spyder-ide/spyder/releases/tag/v3.0.1

I just did this on win 10: no crash, got blank "tk" separate window

查看更多
登录 后发表回答