1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
--- - name: "Install pip" become: true ansible.builtin.package: name: "python3-pip" state: present - name: "Install proxmoxer" become: true ansible.builtin.pip: name: - "proxmoxer>=2.3.0" - "requests" state: present extra_args: "--break-system-packages"