Change - Installing Python

Created on Oct. 16, 2012, 7:02 p.m. by Hevok & updated on Oct. 19, 2012, 6:22 p.m. by Hevok

Installing any or multiple versions of Python on Ubuntu is simple. ¶

First of all install some dependencies: ¶

sudo apt-get install build-essential ¶
sudo apt-get install libreadline5-dev libncursesw5 libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libc6-dev libbz2-de ¶

Download: :: ¶

cd Downloads ¶
wget http://python.org/ftp/python/2.7.
23/Python-2.7.23.tgz ¶

Extract and change directory to: :: ¶

tar -xzf Python-2.7.
23.tgz && cd Python-2.7.23

Install via building: :: ¶

./configure ¶
make ¶
sudo make
install # This will make it to the default installation, use </ins><span>altinstall</span><ins style="background:#e6ffe6;"> instead to keep the default if desired.


Comment: Used newer python version 2.7 subversion and corrected the last command to install as default.

Comment on This Data Unit