H2ONaCl
H2ONaCl

Reputation: 11269

Is it possible to install IDLE on Python 2.5 and Ubuntu

Ubuntu Software Center offers versions of IDLE numbered 2.6 and upwards. If I have to use Python 2.5 (because of Google App Engine compatibility), will it be possible to still use IDLE? I am of course assuming that the there is some necessity for the IDLE version number to be the same as the Python version number.

Presently, my invocations of IDLE fail because of _tkinter not being found. Likewise it is not found when I try to do an import _tkinter interactively. I then proceeded to install Tcl and Tk and python-tk and one of the IDLE versions being offered (none were labelled 2.5) but _tkinter still does not get imported.

Upvotes: 0

Views: 340

Answers (1)

Drew D.
Drew D.

Reputation: 411

I think your problem it that tkinter is installed in a different version of Python than IDLE is using. See this discussion here.

Upvotes: 1

Related Questions