Centos8: 安装python2, 并设置默认版本

文章目录


原本centos上已经有python3.6了,因为要运行旧代码,需要安装python2版本。

#在CentOS 8上安装Python 2
sudo dnf install python2

#设置默认Python版本 python2
sudo alternatives --set python /usr/bin/python2

#设置默认Python版本 python3
sudo alternatives --set python /usr/bin/python3

Centos8: 安装python2, 并设置默认版本_第1张图片

你可能感兴趣的:(1024程序员节)