Answers for "install ansible with pip"

4

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
Posted by: Guest on September-20-2020
0

install ansible with pip

$ python -m pip install --user ansible
Posted by: Guest on September-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language