> CentOS > CentOS教程 >

centos下安装python3.3.0

获取python3.3.0
wget http://www.python.org/ftp/python/3.3.0/Python-3.3.0.tgz
解压压缩文件
tar xzvf Python-3.3.0.tgz
进入文件
cd Python-3.3.0
新加一个python3的安装目录防止覆盖到老版本的python
mkdir /opt/python3.3.0
开始编译安装
./configure --prefix=/opt/python3.3.0
make
make install
建立一个新版本python的连接
ln -s /opt/python3.3.0/bin/python3 /usr/local/bin/python3
使用python3

[root@localhost Python-3.3.0]# python3
Python 3.3.0 (default, Jun  9 2014, 09:24:15)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
ps:安装python3时,尽量不要覆盖linux自带的python2。使用这种方法可以有效的避免对老版本python的覆盖。 (责任编辑:IT)