From: Keith Lee on
All:
I am attempting to use Python's idle on Mandriva Linux 2008; but, I keep getting a "command not found" error
in the /usr/lib/python2.5/idlelib/idle.py file. Any help?

Keith
From: David W. Hodgins on
On Wed, 16 Jan 2008 10:27:44 -0500, Keith Lee <cmarvel(a)nospam.nethere.com> wrote:

> All:
> I am attempting to use Python's idle on Mandriva Linux 2008; but, I keep getting a "command not found" error
> in the /usr/lib/python2.5/idlelib/idle.py file. Any help?

Try running "python /usr/lib/python2.5/idlelib/idle.py" from a console. If that
fails, with no error messages, try running
strace -f -F -v -odebug.txt python /usr/lib/python2.5/idlelib/idle.py
and then view debug.txt, to see what command is not being found.

Regards, Dave Hodgins

--
Change nomail.afraid.org to ody.ca to reply by email.
(nomail.afraid.org has been set up specifically for
use in usenet. Feel free to use it yourself.)
From: Keith Lee on
Dave:
Thanks! That worked just fine.

Keith Lee