linux下centos7升级python版本

由于项目需要使用爬虫,爬虫框架支撑3.8以上版本。而linux自带的python版本是2.7.*,所以需要升级python版本至3.8+

键脚本安装Python3.6-Python3.10

bash <(curl -sSL https://raw.githubusercontent.com/midoks/choose-linux-python/main/install.sh)

linux下centos7升级python版本_第1张图片

  • 成功后会有successful提示,如下
    在这里插入图片描述

查看python位置

ls /usr/bin/python*
在这里插入图片描述

查询当前配置

update-alternatives --list python
没有配置过的话会返回update-alternatives: error: no alternatives for python

配置默认版本

通过设置优先级来实现默认使用python3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2

查询默认版本号

python --version

注意

有些脚本需要手动修改python版本(如yum),将/usr/bin/python改为/usr/bin/python2

你可能感兴趣的:(linux,python,运维)