install ansible centos 8 code example

Example 1: Install ansible

On Fedora:
$ sudo dnf install ansible

On RHEL and CentOS:
$ sudo yum install ansible

On Ubuntu:
$ sudo apt-add-repository --yes --update ppa:ansible/ansible
$ sudo apt install ansible

Using PIP:
$ pip install --user ansible

On Alpine:
$ apk add ansible

Example 2: Install ansible in alpine linux

$ apk add ansible

Example 3: how to install ansible in centos

[root@ansible ~]# yum install ansible

Example 4: how to install ansible in centos

[root@ansible ~]# yum install epel-release -y

Example 5: install ansible in redhat

RHEL-8.2.0

then install python3
----yum install python3

then for installing ansible required python pipe
----yum -y install python3-pip


now install ansible by using pip3
----pip3 install ansible

Example 6: instal ansible centos 7

Install Ansible on CentOS 7
https://www.snel.com/support/how-to-install-ansible-on-centos-7/