Install Modules Dependencies

Some modules and plugins require external libraries.

Please check the requirements for each plugin or module you use in the documentation to find out which requirements are needed.

You can install all python dependencies via install_dep role:

Role requirements

Usage

- name: Install Dependencies on CN
  hosts: all
  gather_facts: no
  roles:
    - role: ans2dev.general.install_dep

You can olso install in pre_tasks with become: false

- name: Install Dependencies on CN
  hosts: all
  gather_facts: no

  pre_tasks:

    - name: install dependencies
      block:
        - include_role:
            name: ans2dev.general.install_dep
      become: false