centos7 python3 安装

Posted

tags:

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

mkdir /usr/python3.5
tar -xf Python-3.5.1.tgz
cd Python-3.5.1
./configure --prefix=/usr/python3.5
make & make install
ln -s /usr/python3.4/bin/python3 /usr/bin/python

因为yum使用python2,因此替换为python3后可能无法正常工作,因此修改yum配置文件(sudo vi /usr/bin/yum)。
将第一行指定的python版本改为python2.7(#!/usr/bin/python 改为 #!/usr/bin/python2.7)

pip 是一个安装和管理 Python 包的工具 , 是 easy_install 的一个替换品。

distribute是setuptools的取代(Setuptools包后期不再维护了),pip是easy_install的取代。

pip的安装需要setuptools 或者 distribute,如果你使用的是Python3.x那么就只能使用distribute因为Python3.x不支持setuptools。


ln -s /usr/python3.4/bin/easy_install /usr/bin/easy_install
ln -s /usr/python3.4/bin/pip /usr/bin/pip









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

CentOS7 Python3上安装paramiko

centos7 python3 安装paramiko模块

CentOS7安装Python3

centos7 python3 安装

CentOS7安装python3

CentOS7安装Python3