centos上安装 Python3x

Posted

tags:

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

centos上安装 Python3.xx

  1. 下载源码包

wget wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.gz

  2. 安装依赖

yum install -y openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel

  3. 安装

tar zxf Python-3.6.1.tar.gz
cd Python-3.6.1
./configure --prefix=/usr/local/python3
make
make install

  4. 设置环境变量,方便使用

# 进入python解析器
ln -s /usr/local/python3/bin/python3 /usr/bin/python3
# pip 安装包工具
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3


安装完成,可以使用了

本文出自 “浅浅的淡淡” 博客,请务必保留此出处http://cuixiang.blog.51cto.com/8204722/1930856

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

CentOS7.2+Python3x+Flask部署标准化配置流程

python2x与python3x的区别

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段

python网络数据采集(伴奏曲)

centos 7安装gitlab及使用

版本管理 GitLab 的安装及管理 (CentOS 7)