473,385 Members | 1,798 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Unable to run IDLE from 2.3?

Hi all,

I recently downloaded and installed Python 2.3 for Windows (on XP
professional) and I don't seem to be able to run IDLE from my start
menu? It seems something happens when I click on it (ie I get an
hourglass) but no actual application turns up.

Has anyone else experienced this and can anyone give me some advice on
how to fix it?

Much warmth,

Murray
http://www.planetthoughtful.org
Building a thoughtful planet,
one snide comment at a time...
Jul 18 '05 #1
6 1932
> Has anyone else experienced this and can anyone give me some advice on
how to fix it?


Works for me, on Win2000. I've never used XP, but I'd suggest:

*) opening a command-prompt box
*) cd'ing to %PYTHON_HOME%\lib\idlelib
(where PYTHON_HOME=C:\python23 unless changed at install time)
*) ..\..\python idle.py

watch out for error messages, and let us know...

Jul 18 '05 #2
<posted & mailed>

M Wells wrote:
I recently downloaded and installed Python 2.3 for Windows (on XP
professional) and I don't seem to be able to run IDLE from my start
menu? It seems something happens when I click on it (ie I get an
hourglass) but no actual application turns up.

Has anyone else experienced this and can anyone give me some advice on
how to fix it?


There are two known causes for this bug:

-- you installed Python in a directory with a space in its path

Workaround: uninstall it, install it again in a directory with
no spaces in its path, e.g. its default C:\Python23

-- you are running a "personal firewall" that is set to inhibit
connections to host 127.0.0.1

Workaround: remove your "personal firewall" or at least reprogram
it so that connections to 127.0.0.1 are allowed; 127.0.0.1 in
TCP/IP means "this very host, me, myself" and therefore there is
no way in which connections to this address can put you at risk.

IDLE 1.0 uses sockets for communication between the 'main' process
and a secondary process that's set up to run code being developed,
and some misprogrammed 'personal firewalls' are known to interfere
with this. In theory, it is conceivable that a bad installation
of "networking" on some Windows machine might cause the same
effect as a misconfigured 'personal firewall', but so far in each
case I've analyzed it did boil down to 'personal firewalls'.
It's not necessarily the case that your troubles come from either
of these known causes, but please check both of them -- if it's
something else again, we'll need to root around for it.
Alex

Jul 18 '05 #3
M Wells <ur*********@ozemail.com.au> writes:
I recently downloaded and installed Python 2.3 for Windows (on XP
professional) and I don't seem to be able to run IDLE from my start
menu? It seems something happens when I click on it (ie I get an
hourglass) but no actual application turns up.

Has anyone else experienced this and can anyone give me some advice on
how to fix it?


Do you have any form of "personal firewall" software? There is a known
issue when Idle is used with a (misconfigured) firewall. The problem
is that Idle relies on an internal socket connection. If the firewall
is set to block that socket, Idle won't start. There should be no need
to block traffic to IP address 127.0.0.1 (the local machine) so the
firewall settings should be changed to allow this.

For a better explanation, see http://www.python.org/2.3/bugs.html

Hope this helps,
Paul.
--
This signature intentionally left blank
Jul 18 '05 #4
> It appears the fact that I also have ruby installed is causing the
problem? Should I uninstall ruby, do you think, and try re-installing
python? I'd prefer to have access to both of them, but Python is the
language I want to concentrate on at present.


I seem to recall ruby defines tcl/tk related environment variables
which may interfere with python. If you are not using ruby-tk,
I don't think you need to de-install but merely un-defining those
variables should correct the situation. I think that's what I did
long ago so I don't see those variable names myself, and can't
be more specific....

HTH,

Bernard.

Jul 18 '05 #5
On Tue, Aug 05, 2003 at 03:14:22PM -0400, Tim Peters wrote:
In addition to the two possible causes Alex spelled out, another common
problem is some *other* program setting up Tcl or Tk environment variables
pointing to an inappropriate version of Tcl/Tk. The installer for Ruby is
the most common culprit for this problem, so if you've installed Ruby that's
probably the cause.


I'm battling what seems to be a related issue on RH 9 (accursed Red Hat!). I
installed 2.3 from src tarball last week, and it worked fine. The new Idle
is very sexy. Yay, idle.

Then last night I decided to upgrade from RH 8 to RH 9 (accursed Red Hat!).
That was a disaster on many fronts (it's not a good thing to have corrup CD
media on the 3rd disc of a KRUD update...argh!), but it also totally trashed
my 2.3's _tkinter.so. Now when I try to rebuild 2.3 from src, I can't seem
to get a _tkinter.so which points to valid tcl & tk libraries (despite using
"--with-libs="" to point to the libtcl & libtk RH 9 installed).

(The extent of my dynamic library fu on Linux is to futz around with
symlinks from the places where _tkinter.so wants to find tcl/tk libs to the
places where they actually are on my RH 9 (accursed Red Hat!) system, then
to rerun /sbin/ldconfig. This "trick" didn't work either.)

So I decided that RH is completely evil (accursed Red Hat!), and I would
just install Tk & Tcl from scratch in /usr/local/lib and rebuild 2.3 using
those libs, like this:

./configure --with-libs="/usr/local/lib/libtcl8.4.so \
/usr/local/lib/libtk8.4.so"

This works, but goddam what a pain in my ass...In case it's now clear by
now: I hate Red Hat (though hitting back at SCO is pretty cool, trying to
keep up with Python on a RH box has been way too painful for far too long).

I recommend repeated playings, at max volume, of Bob Dylan's "Idiot Wind" if
you have to fight this battle -- it seemed to help my mood.

Kendall Clark
--
Jazz is only what you are. -- Louis Armstrong

Jul 18 '05 #6
On Tue, 5 Aug 2003 22:08:02 +0200, "Bernard Delmée"
<bd*****@advalvas.REMOVEME.be> wrote:
I seem to recall ruby defines tcl/tk related environment variables
which may interfere with python. If you are not using ruby-tk,
I don't think you need to de-install but merely un-defining those
variables should correct the situation. I think that's what I did
long ago so I don't see those variable names myself, and can't
be more specific....


Hi Bernard,

Worked perfectly!

Removed the ruby variables and now IDLE is running! Thank you to you
(and also to the others that replied) for your help!

Much warmth,

Murray
http://www.planetthoughtful.org
Building a thoughtful planet,
one snide comment at a time...
Jul 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Kerry Neilson | last post by:
For the past couple of months, Idle won't start when I invoke it. I am at a complete loss for why this is. When this happens, they python command line still starts, and python works fine...
1
by: Moosebumps | last post by:
So say I am working on two separate .py files in IDLE that are part of the same program. Does anyone have problems where when you modify one file, and then run the other, the changes you made in...
1
by: dbrown2 | last post by:
I typically use IDLE for editing and debug. On Windows at least, IDLE and the standard turtle graphics module do not mix. I think both use Tkinter. For now I use IPython and Jedit when using...
8
by: Jonathan Polley | last post by:
I have one account on a WindowsXP machine that refuses to run IDLE (or any other python script that uses Tk). Other people can login to that PC and IDLE runs just fine, so it is not an...
5
by: apple | last post by:
UDBV8 fp 6a - AIX 5.1 We have scheduled cron jobs to do backups. Periodically and starting to occur more frequently, a backup fails with this error: SQL2072N Unable to bind the shared library...
19
by: Frank Rizzo | last post by:
I want to log the user out when there has been a period of inactivity in the application. The key here is inactivity of the application, not the system. I know that you can retrieve the...
7
by: iwdu15 | last post by:
how can i tell if my system has gone idle? then how can i execute a command accordingly? thnks
6
by: Solje | last post by:
Im developing an ASP.NET application used for maintinance purpose and it may be idle for some ours. The application crash with the error shown below when the user click on some contol in the...
5
by: Russ P. | last post by:
I've been programming in python for a few years using XEmacs on Solaris and Linux. I've been thinking about trying IDLE for a long time, but either it wasn't available on my system or I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.