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 }}"
    
  • 相关阅读:
    拷贝本地文件到docker容器
    python3 使用pip安装(命令行中)失败或 “not a supported wheel” 解决方案!
    Scrapy框架爬虫
    2019227单词记录
    开班第一碗
    函数进阶
    Oracle数组
    oracle merge into使用
    oracle授权替代database link 速度加快
    ora01031:权限不足
  • 原文地址:https://www.cnblogs.com/toska/p/12959128.html
Copyright © 2011-2022 走看看