centos下python自动升级到2.7.5

#!/bin/sh
yum install -y tcpdump wget gcc gcc-c++ openssl zlib-devel openssl-devel libaio.so.1 ncurses-devel lrzsz  "@Chinese Support"
yum install -y gcc gcc-c++ make sysstat nc wget tar zlib zlib1g-dev man tree 
wget http://git.oschina.net/lt1946/auto-install-in-centos/raw/master/install_python_0512.tar.gz
tar -xvf install_python_0512.tar.gz python
cd python
python init.py
source /etc/profile
reboot

#copy up lines content to new file
cat > auto_install_python.sh

#chmod to execute
chmod +x auto_install_python.sh
#run
./auto_install_python.sh

#wait to 20minutes.
#can be ok
#if reboot,check python 
python --version


你可能感兴趣的:(python,auto)