CentOS 6.5安装python3.3.4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.5安装python3.3.4相关的知识,希望对你有一定的参考价值。
以前学习过Python,是3以上的版本,最近在VM上安装了Centos6.5,自带的Python是2.6.6,虽然和Python3.4也没有太多区别,但还是想将Python升级到3.3.4,于是从网上收集学习开始鼓捣。
安装环境
yum install gcc
yum install zlib-devel
yum install make下载python版本
wget http://www.python.org/ftp/python/3.4.0/Python-3.4.0.tgz解压缩、编译和安装
tar -zxvf Python-3.4.0.tgz
cd Python-3.4.0
./configure --prefix=/opt/python3
make all
make install
清除之前编译的可执行文件及配置文件。
make clean
清除所有生成的文件
make distclean查看安装的新版本信息
/opt/python3/bin/python3 -V
Python 3.4.0
由此看出编译安装的新版本python生效了
5、配置环境(CentOS 6.5自带有python2)
①添加/usr/local/python-3.3/bin到PATH
# cd /etc # vi /etc/profile 末尾添加PATH=$PATH: /opt/python3/bin # source profile # echo $PATH |
②创建链接文件
# cd /usr/bin # rm -rf python # ln -s /usr/local/python-3.3/bin/python3.3 ./python |
以上是关于CentOS 6.5安装python3.3.4的主要内容,如果未能解决你的问题,请参考以下文章