更新Python版本

该文描述了在Linux环境中,特别是CentOS系统中,如何创建下载目录,下载Python的3.8.5和3.10.0版本,然后进行解压、配置安装路径、执行编译安装及设置软链接的过程,最后验证Python版本。
摘要由CSDN通过智能技术生成
①创建下载目录
[root@VM-8-15-centos Downloads]# cd /root
[root@VM-8-15-centos ~]# mkdir Downloads
[root@VM-8-15-centos ~]# cd /root/Downloads/
[root@VM-8-15-centos Downloads]# mkdir software

在这里插入图片描述

②下载到当前目录
#python 3.8.5版本
[root@VM-8-15-centos software]# wget https://www.python.org/ftp/python/3.8.5/Python-3.8.5.tgz

#python 3.10.0版本
[root@VM-8-15-centos software]# wget https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tgz
③解压
[root@VM-8-15-centos software]# tar -xvf Python-3.8.5.tgz

# 进入该目录
[root@VM-8-15-centos software]# cd Python-3.8.5/

# 修改配置文件  --prefix:设定安装目录
[root@VM-8-15-centos software]# ./configure --prefix=/root/Downloads/software/Python-3.8.5   
[root@VM-8-15-centos software]# make
[root@VM-8-15-centos software]# make install  
④设置软链接
[root@VM-8-15-centos software]# mv /usr/bin/python /usr/bin/python2.7.bak   #备份原链接
[root@VM-8-15-centos software]# ln -s /root/Downloads/software/Python-3.8.5/bin/python3 /usr/bin/python  #设置新链接
⑤查看版本
[root@VM-8-15-centos software]# python --version
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值