使用Ansible在本地和本地安装python模块

时间:2019-10-16 05:10:57

标签: ubuntu ansible

我将通过ssh从控制计算机连接到两台边缘计算机e1,e2来安装用于驱动环境的Python模块。

name: AI検査装置のためpython packege設置
  host: webservers
  connection: local
  become: true
  remote_user : root


  tasks:
     - name : install modules
         yum :
            name: "{{ item }} "
         with_items:

             - pyside2
             - numpy
             - opencv-python
             - enum
             - singleton-decorator

我想知道如何将模块从控制计算机远程安装到e1。 安装在e1中的复制模块以在e2上配置环境, 我听说本地环境是可配置的,但我不知道如何。救救我。

1 个答案:

答案 0 :(得分:0)

您需要使用“ pip”模块而不是“ yum”。

  tasks:
     - name : install modules
         pip :
            name: "{{ item }} "
         with_items:

             - pyside2
             - numpy
             - opencv-python
             - enum
             - singleton-decorator