Python installation in UNIX and LINUX?
To install python in LINUX and UNIX machine follow the below steps:
Go to https://www.python.org/downloads/ and download the latest version of python.
Download available zipped source code for Linux/Unix
Extract the files
If you want to customize some option edit setup file
Run ./configure script
make
make install
This will install python at standard location /user/local/bin/ and its libraries will be at user/local/lib/pythonXX, where XX is python version.