如何将centos中默认python3改成2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将centos中默认python3改成2相关的知识,希望对你有一定的参考价值。

参考技术A /usr/bin/python 删了
把/path/to/python3 软链到/usr/bin/python
可能导致yum无法使用,那么:vim /usr/bin/yum 第一行python修改为python2.6(如果有/usr/bin/python2.6的话)本回答被提问者采纳

centos

yum install package


安装python3:

yum install python3

安装后的问题:

yum except KeyboardInterrupt, e

是由于yum依赖与python,之前默认用的python2,在更改了优先级后默认变为了python3;而python3中异常是as不是逗号

解决:

vi /usr/bin/yum

将文件头:#!/usr/bin/python,改为#!/usr/bin/python2

其他出现类似的问题,解决方法也是一样


配置源:

与其他linux不同,不是更改source.list文件

先备份:

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

阿里源:

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

使生效:

yum makecache


配置pip源:

与其他linux系统一致

创建.pip文件夹

mkdir ~/.pip

创建pip.conf配置文件
vim ~/.pip/pip.conf

然后将下面这两行复制进去就好了
[global]
index-url = https://mirrors.aliyun.com/pypi/simple

其他地址:豆瓣:http://pypi.douban.com/simple/(注意末尾加 / ,否则无法)


mysql

下载:https://dev.mysql.com/downloads/repo/yum/,选择对应的系统版本

安装mysql源(即刚下的rpm包):

sudo yum install mysql80-community-release-el7-3.noarch.rpm

检查是否安装成功:

yum repolist enabled | grep "mysql.*-community.*"

技术图片

安装mysql:

直接使用命令:yum install mysql-community-server即可

(安装包大概500M)

启动:systemctl start mysqld/service mysqld start

查看状态:systemctl status mysqld/service mysqld status

参考:https://blog.csdn.net/qq_38591756/article/details/82958333#1.%E4%B8%8B%E8%BD%BDmysql%E6%BA%90%E5%AE%89%E8%A3%85%E5%8C%85



安装chrome

在google官网下载rpm包

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

yum install google-chrome-stable_current_x86_64.rpm

即可!

查看版本: google-chrome-stable --version


chromedriver

下载:

http://npm.taobao.org/mirrors/chromedriver

解压后chmod +x chromedriver

以上是关于如何将centos中默认python3改成2的主要内容,如果未能解决你的问题,请参考以下文章

centos怎么将默认语言从中文改成英文?

如何在CentOS 8上安装Python2 Python3

centos如何安装Python3

centos如何安装Python3

centos7 tomcat9怎么改成端口80

centos7将网卡名字改成eth0样式