我已卸载ansible 1.9.4并使用sudo apt-get install ansible
安装,版本为2.0.2。
但是当我执行时:
ikerlan$ ansible --version
ansible 1.9.4
我已经卸载并使用ansible ppa重新安装,当我安装时我可以看到:
Preparing to unpack .../ansible_2.0.0.2-1ppa~trusty_all.deb ...
Unpacking ansible (2.0.0.2-1ppa~trusty) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Configurando ansible (2.0.0.2-1ppa~trusty) ...
Processing triggers for python-support (1.0.15) ...
但是,如果我检查ansible版本:
ikerlan@ikerlan-docker:~$ ansible --version
ansible 1.9.4
configured module search path = None
如果我运行下一个:
ikerlan@ikerlan-docker:~$ sudo dpkg -l | grep ansible
ii ansible 2.0.0.2-1ppa~trusty all A radically simple IT automation platform
有任何帮助吗?感谢
答案 0 :(得分:17)
由于您已卸载并重新安装,因此无法保证您获得最新版本。截至目前,Ansible 2.0仅通过PPA提供。
$ sudo apt-get install software-properties-common
$ sudo apt-add-repository ppa:ansible/ansible
$ sudo apt-get update
$ sudo apt-get install ansible
答案 1 :(得分:16)
这是升级它的正确方法。即使正确安装ansible后也不会更改版本。我在这里找到的解决方案效果很好。 https://groups.google.com/forum/#!topic/ansible-project/eCtBp2aDtCQ
sudo -H pip install --upgrade ansible
只需运行此命令即可升级并修复我们使用ansible --version
检查的版本它将升级到最新版本,如2.1
答案 2 :(得分:7)
大多数时候你实际上已经安装了两次ansible - 一次通过PIP,一次通过apt-get
如果你
sudo apt-get remove ansible
和
sudo pip uninstall ansible
然后运行
compgen -c | grep ansible
你不应该有任何结果。
然后从PPA安装以获取版本2
$ sudo apt-get install software-properties-common
$ sudo apt-add-repository ppa:ansible/ansible
$ sudo apt-get update
$ sudo apt-get install ansible
运行例如。
ansible-playbook --version
你现在应该看到
ansible-playbook 2.0.2.0
答案 3 :(得分:2)
您可以使用
升级单个包sudo apt-get install --only-upgrade ansible
或使用
清除以前的包和配置文件sudo apt-get remove --purge ansible
sudo apt-get autoremove
然后从ppa安装
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible