Hi
I am having problem getting ansible to work “out of the box” …
On a minimal RHEL6u2 installation I need to do the following to get it installed:
1 rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
2 yum install git -y
12 yum install python-paramiko PyYAML python-jinja2-26
14 git clone git://github.com/ansible/ansible.git
17 yum install make rpm-build python-devel
20 cd ansible/
22 make install # fails
23 make rpm # fails
25 python setup.py install
this seems to work but when I run ansible I get:
Traceback (most recent call last):
File “/usr/bin/ansible”, line 33, in
import ansible.runner
File “/usr/lib/python2.6/site-packages/ansible/runner.py”, line 29, in
import jinja2
ImportError: No module named jinja2
I am thus a bit stuck… asciidoc seems to have disappeared in rhel6 so the make steps all fail on the asciidoc dependency and doing a manual installation is giving me the above error.
Regards