# :-: Ansible 安装
[TOC]
### RedHat 类 YUM 的安装方式
```bahs
1. yum install the epel-release
2. yum install ansible
```
### Ubuntu 类 APT 的安装方式
需要配置 PPA
```bash
1. apt-get install software-properties-common
2. apt-add-repository ppa:ansible/ansible
3. apt-get update
4. apt-get install ansible
```
