Issue 20873: IDLE won't open (original) (raw)

Created on 2014-03-09 02:53 by mélomane, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg212951 - (view) Author: (mélomane) Date: 2014-03-09 03:05
First time using Python on my personal computer. Updated the mac version to 3.3. Then installed ActiveTcl 8.6.1.0, then tried deleting and installing 8.5.15.0. I tried opening IDLE from the applications folder, then from terminal. After that failed to work, I browsed the forms and tried what another user suggested to see if I had write permission to my home directory. Charlottes-MacBook-Pro:~ Charlotte$ /usr/local/bin/idle3.3 Warning: unable to create user config directory /Users/Charlotte/.idlerc Check path and permissions. Exiting! Charlottes-MacBook-Pro:~ Charlotte$ cd ~ Charlottes-MacBook-Pro:~ Charlotte$ ls -lde ~ drwxr-xr-x 23 501 staff 782 8 Mar 22:49 /Users/Charlotte Charlottes-MacBook-Pro:~ Charlotte$ chmod u+w ~ Charlottes-MacBook-Pro:~ Charlotte$ mkdir ~/.idlerc mkdir: /Users/Charlotte/.idlerc: Permission denied Please help. :)
msg212952 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-09 04:32
This isn't really a python question, it's a mac question. Unless there is something the mac installer should be doing to detect this situation..but...are you running the python that comes with the OS, or did you install it yourself? Because if it is the former, there probably isn't much we can do that we haven't already done.
msg212954 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-03-09 04:52
The fact that "ls" shows a UID of 501 instead of your user name "Charlotte" strongly suggests you have an inconstantly defined user account. Suggest you try cresting a new "Administrator" user via "System Preferences" -> "User & Groups" and try logging into that user and see if IDLE works there. If that works, you may need some help trying to fix up your existing account. You may be able to get some useful information with the dscl command: dscl . -read /Users/Charlotte Good luck!
msg212955 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-03-09 04:55
er, "inconstantly" -> "inconsistently"
History
Date User Action Args
2022-04-11 14:57:59 admin set github: 65072
2014-03-09 04:55:30 ned.deily set messages: +
2014-03-09 04:53:06 ned.deily set messages: -
2014-03-09 04:52:50 ned.deily set messages: +
2014-03-09 04:50:14 ned.deily set status: open -> closednosy: + ned.deilymessages: + resolution: not a bugstage: resolved
2014-03-09 04:32:54 r.david.murray set nosy: + r.david.murray, ronaldoussorenmessages: + assignee: ronaldoussorencomponents: + macOS
2014-03-09 03:05:34 mélomane set messages: + components: + IDLEtitle: ID -> IDLE won't open
2014-03-09 02:53:07 mélomane create