天天看點

python安裝

安裝編譯器
yum install gcc

解壓
tar –jxvf Python-2.7.5.tar.bz2
cd Python-2.7.5

編譯和安裝 
./configure
make
make install

cd /usr/bin/ 
rm -rf python  
ln -s /usr/local/python/Python-2.7.5/python ./python
python
安裝完成