Results 1 to 4 of 4
Hi,
I've only just migrated to Linux from Windows and am trying to use Python 2.5 which was preinstalled on my Suse Linux 10.2 distro.
I read somewhere that Idle ...
- 04-01-2007 #1Just Joined!
- Join Date
- Apr 2007
- Posts
- 7
Python Idle on Suse 10.2
Hi,
I've only just migrated to Linux from Windows and am trying to use Python 2.5 which was preinstalled on my Suse Linux 10.2 distro.
I read somewhere that Idle comes packaged on Linux distro's so how do I access it? At the minute I only have python running in the terminal window. On Windows,Idle was really user friendly and having just a terminal window is a bit of a step down.
Thanks,
Tim
- 04-01-2007 #2Linux User
- Join Date
- Aug 2006
- Posts
- 458
Originally Posted by metalhead when you do the above, it shows where your Python libraries are located. From these directories, you can find idle.py . then on command line, change to that directory where idle.py is, and doCode:import sys print sys.path
# python idle.py <options if any>
- 04-01-2007 #3Just Joined!
- Join Date
- Apr 2007
- Posts
- 7
Hi,
I did what you said and found that python 2.5 was installed in /usr/python2.5/ ...
When I used Nautilus to explore these, I couldnt find Idle though.
Maybe it isnt there. Should it be in a folder of its own?
thanks,
tim
- 04-01-2007 #4Linux User
- Join Date
- Aug 2006
- Posts
- 458
first, you can see whether under /usr/python2.5 , there's a Tools directory. it should be there as indicated here. IDLE is distributed with each Python distribution. however you can also use find to search
Originally Posted by metalhead
eg
if you can't find then maybe you want to download and install again from sourceforge. that is the last option.Code:find /usr -type f -name "idle.py"


Reply With Quote