2009-04-27 22 views
1

只要我關閉了tk-window實例a,以下行會導致ipython崩潰。如何避免由Tkinter,visual和ipython引起的Gdk-ERROR?

import visual, Tkinter 
a = Tkinter.Tk() 
a.update() 
display = visual.display(title = "Hallo") 
display.exit = 0 
visual.sphere() 

如果我先關閉視覺顯示,則整個終端崩潰。我在kubuntu 8.10上運行一切。這是一個錯誤還是我做錯了什麼?如果這是一個錯誤:是否有一個聰明的方法來避免它?

乾杯,菲利普

回答

1

你有沒有嘗試過的IPython開始與-gthread -tk命令行開關?

ipython --help

 
     -gthread, -qthread, -q4thread, -wthread, -pylab 

       Only ONE of these can be given, and it can only be given as the 
       first option passed to IPython (it will have no effect in any 
       other position). They provide threading support for the GTK, QT 
       and WXWidgets toolkits, and for the matplotlib library. 

       With any of the first four options, IPython starts running a 
       separate thread for the graphical toolkit's operation, so that 
       you can open and control graphical elements from within an 
       IPython command line, without blocking. All four provide 
       essentially the same functionality, respectively for GTK, QT3, 
       QT4 and WXWidgets (via their Python interfaces). 

       Note that with -wthread, you can additionally use the -wxversion 
       option to request a specific version of wx to be used. This 
       requires that you have the 'wxversion' Python module installed, 
       which is part of recent wxPython distributions. 

       If -pylab is given, IPython loads special support for the mat- 
       plotlib library (http://matplotlib.sourceforge.net), allowing 
       interactive usage of any of its backends as defined in the 
       user's .matplotlibrc file. It automatically activates GTK, QT 
       or WX threading for IPyhton if the choice of matplotlib backend 
       requires it. It also modifies the %run command to correctly 
       execute (without blocking) any matplotlib-based script which 
       calls show() at the end. 

     -tk The -g/q/q4/wthread options, and -pylab (if matplotlib is 
       configured to use GTK, QT or WX), will normally block Tk 
       graphical interfaces. This means that when GTK, QT or WX 
       threading is active, any attempt to open a Tk GUI will result in 
       a dead window, and possibly cause the Python interpreter to 
       crash. An extra option, -tk, is available to address this 
       issue. It can ONLY be given as a SECOND option after any of the 
       above (-gthread, -qthread, q4thread, -wthread or -pylab). 

       If -tk is given, IPython will try to coordinate Tk threading 
       with GTK, QT or WX. This is however potentially unreliable, and 
       you will have to test on your platform and Python configuration 
       to determine whether it works for you. Debian users have 
       reported success, apparently due to the fact that Debian builds 
       all of Tcl, Tk, Tkinter and Python with pthreads support. Under 
       other Linux environments (such as Fedora Core 2/3), this option 
       has caused random crashes and lockups of the Python interpreter. 
       Under other operating systems (Mac OSX and Windows), you'll need 
       to try it to find out, since currently no user reports are 
       available. 

       There is unfortunately no way for IPython to determine at run- 
       time whether -tk will work reliably or not, so you will need to 
       do some experiments before relying on it for regular work. 
+0

謝謝你,這是一個好主意。不幸的是,這不起作用。根據命令行開關和操作系統的組合(我也嘗試了Ubuntu 9.04上的所有內容),我得到了各種各樣的錯誤。 – 2009-04-27 19:13:57