CentOS 6.5安装python3.3.4
时间:2015-05-03 22:53 来源:linux.it.net.cn 作者:IT
# cd ~/Downloads/
# wget http://www.python.org/ftp/python/3.3.4/Python-3.3.4.tgz
# tar -xzvf Python-3.3.4.tgz
# mkdir /usr/local/python-3.3
# cd Python-3.3.4
编译命令:
# make
安装命令:
# make install
# cd /etc
# vi /etc/profile
末尾添加PATH=$PATH:
/usr/local/python-3
.3
/bin
# source profile
# echo $PATH
# cd /usr/bin
# rm -rf python
# ln -s /usr/local/python-3.3/bin/python3.3 ./python
(责任编辑:IT)
(责任编辑:IT) |