zoukankan      html  css  js  c++  java
  • Ansible virtualenv下pip3安装requirements报错

    ansible step:

    - name: Pip install reqs
      pip:
        requirements: /$HOME/requirements.txt
        virtualenv: {{ VENV }}
      become: true
      become_user: "{{ SERVICE_USER }}"
    error:
    
    TASK [xxxx : Check that the service has started] *********************************************************************************************
    fatal: [xxxxx]: FAILED! => {"changed": true, "cmd": "pgrep python -u marin", "delta": "0:00:00.209812", "end": "2020-05-18 23:40:24.777255", "failed_when_result": true, "msg": "non-zero return code", "rc": 1, "start": "2020-05-18 23:40:24.567443", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": []}
    

    问题2:(由于安装的python3.6.4,想默认使用pip3.6安装requirements)

    ansible step:
    
    - name: Pip install reqs
      pip:
        requirements: /$HOME/requirements.txt
        virtualenv: {{ VENV }}
        executable: pip3.6
      become: true
      become_user: "{{ SERVICE_USER }}"
    error
    
    TASK [xxxx : Install required python modules] ************************************************************************************************
    fatal: [fxxx]: FAILED! => {"changed": false, "msg": "parameters are mutually exclusive: executable|virtualenv"}
    

    根据官方文档,错误是 executable无法和virtualenv 2个parameters并行
    https://docs.ansible.com/ansible/latest/modules/pip_module.html

    最终的workaround:
    使用command在virtualenv path下直接运行pip3.6

    - name: Install required python modules
      command: "{{ VENV }}/bin/pip3.6 install -r /home/marin/marin-insights-service/requirements.txt"
      become: true
      become_user: "{{ SERVICE_USER }}"
    
  • 相关阅读:
    kuberdm安装
    docker网络
    docker安装及基本使用
    慢日志
    mysql-5.7主从复制
    MySQL-5.6主从复制
    MySQL索引原理
    Kubernetes的kubeadm项目安装部署
    十六、kubernetes之安全实验案例
    十五、Kubernetes之安全配置
  • 原文地址:https://www.cnblogs.com/toska/p/12959128.html
Copyright © 2011-2022 走看看