删除centos中自带的python2,安装python3

1.强制删除已安装python及其关联

rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps

删了python导致无法用yum。。。。解决:https://blog.csdn.net/wyanyi/article/details/99541911

2.下载https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tgz
迅雷下载,然后传到服务器

3.tar -zxvf Python-3.8.1.tgz
cd Python3.8.1
先执行./configure
然后执行make && make install
(如果以上不行的话,先执行yum update,然后执行yum install gcc build-essential)

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