当我运行ansible playbook时,我遇到了以下错误:
你是否安装了azure> = 2.0.0?试试
pip install 'azure>=2.0.0' --upgrade
- 没有名为containerservice的模块
Ansible版本:
ansible 2.4.0.0
config file = /var/www/Ansible/ansible.cfg
configured module search path = [u'/home/vagrant/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.12 (default, Jul 18 2016, 15:02:52) [GCC 4.8.4]
天青:
Name: azure
Version: 2.0.0rc5
Summary: Microsoft Azure Client Libraries for Python
Home-page: https://github.com/Azure/azure-sdk-for-python
Author: Microsoft Corporation
Author-email: ptvshelp@microsoft.com
License: MIT License
Location: /usr/local/lib/python2.7/dist-packages
Requires: azure-servicemanagement-legacy, azure-batch, azure-servicebus, azure-mgmt, azure-storage, azure-graphrbac
我尝试安装此代码:pip install azure-mgmt-containerservice
但是,现在出现以下错误:
已安装的资源客户端版本为0.30.0rc5。支持的版本是1.1.0。试试
pip install azure>=2.0.0 --upgrade
答案 0 :(得分:2)
解决此问题的最简单方法是使用
重新安装ansiblepip install ansible[azure]
这将自动安装所有azure依赖项。目前,azure 2.0.0中的软件包与2.4.0.0的软件需求之间存在差异
PS。你的azure模块真的过时了。喜欢2年过时了。