Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.
8
votes
2answers
635 views
View Script Over SSH?
A friend, using a remote machine, SSHed to my machine and ran the following python script:
while (1):
....print "hello world"
(this script simply prints 'hello world' continuously).
I am now ...
1
vote
0answers
573 views
Which scripting language is most widespread in system administration tasks? [closed]
I am migrating to Linux and have some experience with the Mac OS X command line/bash. I'd like to automate system admin tasks via scripting, but I am unsure as which language is the most used in the ...
2
votes
1answer
455 views
pysvn fails to make due to -lneon not found?
I am trying to install pysvn on my CentOS server and it says that -lneon is gone.
After searching their mailing lists for a bit I found what neon means but it doesn't say how can I get it?
Here's my ...
0
votes
0answers
80 views
Python MySQLdb compatible with which versions of Python? [closed]
I was reading on MySQLdb Python page and cannot seem to find any version information.
Currently I am developing with this MySQLdb module using python 2.5, 2.6 but was wondering if it is compatible ...
11
votes
5answers
3k views
Using different versions of Python
Background:
Since I develop python programs that must run on different python versions, I have installed different versions of python on my computer.
I am using FC 13 so it came with python 2.6 ...