This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: IDLE does not start 2.4.3
Type: Stage:
Components: IDLE Versions: Python 2.4
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: kbk Nosy List: egrimes, josiahcarlson, kbk, terry.reedy
Priority: normal Keywords:

Created on 2006-04-17 15:58 by egrimes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg28258 - (view) Author: Erin (egrimes) Date: 2006-04-17 15:58
IDLE does not start. 2.4.3  
Installed Python 2.4.3 on Windows XP SP 2
I shutoff my ZoneAlarm Firewall and Stopped the 
Windows
Firewall, turned off all Anti-Virus services.

Python was 2.4.2 was previously installed on this 
machine and worked fine. Machine was wiped, reloaded 
and Python 2.4.3 was available.

Steps:
1. Click Start -> All Programs -> Python 2.4 -> IDLE 
(Python GUI)
2. pythonw.exe process starts for a few seconds, then 
stops
3. Nothing happens
msg28259 - (view) Author: Josiah Carlson (josiahcarlson) * (Python triager) Date: 2006-04-21 05:53
Logged In: YES 
user_id=341410

1. Start up a command line (Start -> Run -> cmd).
2. Change to the directory in which Python is installed (the
following will likely work, if you installed Python using
the default configuration)...
c:
cd \python24
3. Run idle from the command line...
python lib\idlelib\idle.pyw

Tell us what it prints out.
msg28260 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2006-04-21 05:59
Logged In: YES 
user_id=593130

I have opposite experience.  Winxp home sp2, upgraded 
without uninstall.  Did not turn off Win Firewall or AV.
Idle 1.1.3 starts up nice as can be.  File/Recent File 
list is still there.  Opened one with test code and it 
just reran; all tests pass as did before with, I believe, 
same test report output.

What happens when you open a Python command window?  Have 
you run test/regrtest.py or anything else?

msg28261 - (view) Author: Erin (egrimes) Date: 2006-04-21 12:25
Logged In: YES 
user_id=1503943

When Python installed, my admin account was not given 
permission to access the C:\Documents and 
Settings\Admin\.idlerc folder which was preventing Python 
from starting.

Thanks for showing me how to start IDLE in cmd prompt, 
that showed me the permission denied error on the folder. 
Might want to have python throw some sort of error if it 
tries to open via shortcut and that folder is blocked.
msg28262 - (view) Author: Josiah Carlson (josiahcarlson) * (Python triager) Date: 2006-04-21 15:52
Logged In: YES 
user_id=341410

A patch which offers such functionality would surely be
appreciated.
History
Date User Action Args
2022-04-11 14:56:16adminsetgithub: 43228
2006-04-17 15:58:01egrimescreate