将 Ansible 命令转换为 pip 任务

Convert Ansible command to pip task

我想将以下内容转换为 Ansible pip 任务:

- name: install packages and setup profile 3
  shell: pip install --user vex

我在为用户安装的 Ansible 文档中没有看到任何内容。

您可以将 pip moduleextra_args 参数一起使用:

- name: install packages and setup profile 3
  pip:
    name: vex
    state: present
    extra_args: --user

Ansible 将参数中给出的值直接传递给 pip 命令。