Я пытаюсь установить Ansible на CentOS 7, и у меня Ansible настроен на использование Python 3. У меня установлены как Python2, так и Python3.
[root@ansible1 ~]# python --version
Python 2.7.5
[root@ansible1 ~]# python3 --version
Python 3.6.8
Если я установлю Ansible с помощью yum install ansible
, то ansible --version
показывает, что Ansible настроен на использование Python 2.7.5. Я удаляю ansible (yum remove ansible
);
[root@ansible1 ~]# ansible --version
ansible 2.9.10
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/site-packages/ansible
executable location = /bin/ansible
python version = 2.7.5 (default, Aug 7 2019, 00:51:29) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
В соответствии с https://docs.ansible.com/ansible/latest/reference_appendices/python_3_support.html:
Самый простой способ запустить / usr / bin / ansible под Python 3 - установить его с версией pip для Python3. Это заставит по умолчанию / usr / bin / ansible работать с Python3
У меня установлена версия 9.0.3 pip.
[root@ansible1 ~]# pip3 --version
pip 9.0.3 from /usr/lib/python3.6/site-packages (python 3.6)
Следуя документации Ansibles, я выдаю pip3 install ansible
для установки Ansible с помощью pip3.
[root@ansible1 ~]# pip3 install ansible
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead.
Collecting ansible
Using cached https://files.pythonhosted.org/packages/4b/69/c8aef60ce070fe6872e27db65f588bd0ffe8892a980cd3f4d844d8b72152/ansible-2.9.12.tar.gz
Requirement already satisfied: jinja2 in /usr/local/lib64/python3.6/site-packages (from ansible)
Requirement already satisfied: PyYAML in /usr/local/lib64/python3.6/site-packages (from ansible)
Requirement already satisfied: cryptography in /usr/local/lib64/python3.6/site-packages (from ansible)
Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib64/python3.6/site-packages (from jinja2->ansible)
Requirement already satisfied: six>=1.4.1 in /usr/local/lib/python3.6/site-packages (from cryptography->ansible)
Requirement already satisfied: cffi!=1.11.3,>=1.8 in /usr/local/lib64/python3.6/site-packages (from cryptography->ansible)
Requirement already satisfied: pycparser in /usr/local/lib/python3.6/site-packages (from cffi!=1.11.3,>=1.8->cryptography->ansible)
Installing collected packages: ansible
Running setup.py install for ansible ... done
Successfully installed ansible-2.9.12
Вот результат pip3 show ansible
команда.
[root@ansible1 ~]# pip3 show ansible
Name: ansible
Version: 2.9.12
Summary: Radically simple IT automation
Home-page: https://ansible.com/
Author: Ansible, Inc.
Author-email: info@ansible.com
License: GPLv3+
Location: /usr/local/lib/python3.6/site-packages
Requires: jinja2, PyYAML, cryptography
Однако ansible --version
команда возвращает следующее.
-bash: /bin/ansible: No such file or directory
Точно так же /usr/bin/ansible --version
:
-bash: /usr/bin/ansible: No such file or directory
В pip show ansible
команда показывает, что местоположение /usr/local/lib/python3.6/site-packages/ansible
. Этот каталог существует и содержит множество файлов и папок, но нет специальных файлов конфигурации Ansible (например, ansible.cfg) или двоичных файлов (например, ansible), которые можно использовать (насколько я могу судить).
Баш кеширует пути к командам, и если команда будет перемещена (как это кажется в вашем случае), то bash не заберет ее, если этот кеш не будет очищен.
Вы можете очистить ansible
из кеша с помощью:
hash -d ansible
Или очистите весь кеш с помощью:
hash -r