Centos 7安装Python3.9.5
Python写脚本很方便很强,修改脚本不需要重新编译直接运行并且跨平台,比如用来做定时采集各种数据。
下载Python3.9.5源码
wget https://www.python.org/ftp/python/3.9.5/Python-3.9.5.tgz
解压源码
tar zxvf Python-3.9.5.tgz
进入源码目录
cd Python-3.9.5
配置并设置安装路径
./configure --prefix=/www/Python3.9.5
构建和安装
make make install
添加Python3.9.5到系统环境变量
vim /etc/profile #末尾添加下面2行 PATH=$PATH:/www/Python3.9.5/bin export PATH
让系统环境变量生效
source /etc/profile
至此已经完成!