CentOS 6.5 安装Python 3.5

Posted 明天OoO你好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.5 安装Python 3.5相关的知识,希望对你有一定的参考价值。

1、CentOS6.5 安装Python 的依赖包

yum groupinstall "Development tools" yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

2、下载Python3.5的源码包并编译

wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz tar xf Python-3.5.0.tgz cd Python-3.5.0 ./configure --prefix=/usr/local --enable-shared make make install ln –s /usr/local/bin/python3 /usr/bin/python3

3、在运行Python之前需要配置库:

echo /usr/local/lib >> /etc/ld.so.conf.d/local.conf ldconfig

4、运行演示:

python3 --version Python 3.5.0

5、删除编译Python时所需要的库

yum groupremove "Development tools" --remove-leaveas yum remove zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel --remove-leaves

6、设置别名方便使用

alias py=python3

以上是关于CentOS 6.5 安装Python 3.5的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 安装Python3.6.5 及 安装ipython 6.1.0

Centos7安装python3.6.5

centos 6.5下 安装python3.5

CentOS 6.5升级Python和安装IPython

CentOS 6.5下安装Python 3.5.2(与Python2并存)

CentOS 6.5安装python3.3.4