ansible-labs

Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates.

Installation

Ansible can be installed on many systems with pip, the Python package manager.

Prerequisites: Installing pip

If pip is not already available on your system, run the following commands to install it:

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python get-pip.py --user

Installing Ansible with pip

Once pip is installed, you can install Ansible:

$ python -m pip install --user ansible

In order to use the paramiko connection plugin or modules that require paramiko, install the required module:

$ python -m pip install --user paramiko

If you wish to install Ansible globally, run the following commands:

$ sudo python get-pip.py
$ sudo python -m pip install ansible

License

MIT License

See LICENSE to see the full text.