python编写,是centos 和 redhat的包管理工具,类似于 pip
常用的yum命令
- Yum list 查看所有的包
- Yum list python 列出所有python包
- yum search centos 搜索所有的centos 包
- yum install python 安装python
- Yum install -y python 遇到询问不需要再输入。y
- yum update 全部更新
- yum update python。 更新python
- yum remove 包名 删除包
/etc/yum.repos.d 是yum的根目录,存放yum源的配置
[] 代码配置文件,下面是具体的配置内容,内容是以 键值对存储
name 名字,yum源的名字
mirrorlist 包文件地址
gpgcheck=1 进行下载是否需要验证 0 代表步验证,1代表要验证,
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 校验文件
换源
cd /etc/yum.repos.d/
将原文件备份
mv CentOS-Base.repo CentOS-Base.repo.bak
下载阿里源地址
wget http://mirrors.aliyun.com/repo/Centos-7.repo
生成缓冲
yum makecache