python / 未分类 · 2012年3月9日

tar.xz 文件 –python install

wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tar.xz
看到 tar.xz文件 先安装
wget http://down1.chinaunix.net/distfiles/xz-5.0.3.tar.bz2
or wget http://tukaani.org/xz/xz-5.0.3.tar.gz
tar xvf xz-5.0.3.tar.bz2
cd xz-5.0.3
./configure
make && make install
##下面正式安装python
xz -d Python-2.7.2.tar.xz
tar -xf Python-2.7.2.tar
cd Python-2.7.2
./configure
make && make install