CentOS6.8安装Python3.6.3
2019-12-20 本文已影响0人
凤箫之舞
1、linux下安装python3
准备编译环境(环境如果不对的话,可能遇到各种问题,比如wget无法下载https链接的文件)
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel -y
2、下载 Python3.6代码包
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
在安装包中有一个README的文件,里面有写如何安装,解压并安装
tar xf Python-3.6.3.tar.xz -C /usr/local/src/tar (child): xz: Cannot exec: No such file or directorytar (child): Error is not recoverable: exiting nowtar: Child returned status 2tar: Error is not recoverable: exiting now
报错,解决报错问题
yum install xz -y
再次解压
tar xf Python-3.6.3.tar.xz -C /usr/local/src/cd /usr/local/src/Python-3.6.3/./configure --prefix=/usr/local/python3yum install gcc-c++ gcc -y #安装编译所需依赖make -j 4 && make install
安装成功后提示
同时成功安装pip-9.0.1与setuptools-28.8.0!
做软链:
ln -s /usr/local/python3/bin/python3.6 /usr/local/bin/python3
升级pip到最新版本:
pip install --upgrade pip
pip安装成功啦!
注:--no-check-certificate 表示安装时“不检查证书”,不加上可能无法安装。
4、配置系统默认python版本为3.6.3
1)、修改旧版本
mv /usr/bin/python /usr/bin/python_bak
2)、创建新的软连接
ln -s /usr/local/python3/bin/python3 /usr/bin/python
3)、检查python的版本
python -V
Python-3.6.3
设置默认为3.6.3成功
因为执行yum需要python2版本,所以我们还要修改yum的配置,执行:
vi /usr/bin/yum
把#! /usr/bin/python修改为#! /usr/bin/python2
image