Centos 安装python3
Posted 下路派出所
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 安装python3相关的知识,希望对你有一定的参考价值。
- 安装python3
大多数云平台没有安装zlib和openssl的devel包,需要提前安装
下载python源码
cd /home/cheat
wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tar.gz
tar xzvf Python-3.6.6.tar.gz
cd Python-3.6.6
mkdir build
cd build
../configure –with-ssl –prefix=/home/cheat/python3
make
make install
# 创建软连接
sudo ln –sf /home/cheat/python3/bin/pip3 /usr/bin/pip3
sudo ln –sf /home/cheat/python3/bin/python3.6 /usr/bin/python3
以上是关于Centos 安装python3的主要内容,如果未能解决你的问题,请参考以下文章