by http://webgeektutorials.blogspot.com

Wednesday, December 21, 2011

Install Python3 on RHEL

One of my frined was facing trouble while installing Python3 on RHEL. I followed the following steps to install it on RHEL:

One thing i would like to say,It is very easy to install  manually:

STEPS :

1. To download python3 Download:

wget http://www.python.org/ftp/python/3.2.2/Python-3.2.2.tar.bz2

2. Now Unzip

bzip2 -cd Python-3.2.2.tar.bz2 | tar xvf -

3. Its time to Prepare compilation

./configure

4. Now start Build

make

5. start Installation

make install

Happy installing :)

No comments:

Post a Comment