简介
python2已经不维护更新了,不管是DEV开发、还是服务器运行环境,python3推广是迟早的事,学习一下在Centos7系统上安装python3。
环境
id | name | Version |
---|---|---|
1 | Centos | CentOS Linux release 7.5.1804 (Core) |
2 | Python | 3.7 |
安装步骤
检查
查看目前服务器上的现有版本。1
2which python
python --version
下载
没有wget的命令的,可以装一下,很有用。1
2
3
4
5# wget安装
yum install wget
# 下载python3版本
wget https://www.python.org/ftp/python/3.7.11/Python-3.7.11.tgz
可以自由选择python3的版本
解压
1 | tar -xvf Python-3.7.11.tgz |
创建编译安装目录
1 | mkdir /usr/local/python3 |
编译
1 | cd Python-3.7.11 |
创建软连
因为服务器已经存在一个python的版本了,所以命名为python3进行区分。1
2ln -s /usr/local/python3/bin/python3 /usr/local/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/local/bin/pip3
测试
1 | python3 -V |