$ python -V Python 2.3.4
If you see some version information like the one shown above, then you have Python installed already. However, if you get a message like this one:
$ python -V
then, you don't have Python installed. This is highly unlikely but possible. In this case, you have two ways of installing Python on your system.
• Install the binary packages using the package management software that comes with your OS, such as yum in Fedora Linux, urpmi in Mandrake Linux, apt-get in Debian Linux, pkg_add in FreeBSD, etc. Note that you will need an internet connection to use this method.
Alternatively, you can download the binaries from somewhere else and then copy to your PC and install it.• You can compile Python from the source code [http://www.python.org/download/] and install it. The compilation instructions are provided at the website.