$ ansible --versionTraceback (most recent call last):File "/usr/bin/ansible", line 36, in <module>from ansible.runner import RunnerImportError: No module named runner$ env | grep -i ansible$
# uname -aLinux HOSTNAME 3.16.0-40-generic #54~14.04.1-Ubuntu SMP Wed Jun 10 17:30:45 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux(Kubuntu)
But that did the trick!sudo rm -rf /usr/local/lib/python2.7/dist-packages/ansible-2.0.0-py2.7.egg
--
You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/mJ6ve0hvhbk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/e956e6b1-0c0e-4c35-ae2c-dc32665b0d99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[root@myhost site-packages]# python -V
Python 2.6.6
[root@myhost site-packages]# lsb_release
LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
[root@myhost site-packages]# /usr/bin/ansible --version
Traceback (most recent call last):
File "/usr/bin/ansible", line 36, in <module>
from ansible.runner import Runner
ImportError: No module named runner
[root@myhost site-packages]# pwd
/usr/lib/python2.6/site-packages
[root@myhost site-packages]# ls -lrth | grep ansible
drwxr-xr-x. 4 root root 4.0K Sep 16 17:09 ansible-2.0.0-py2.6.egg
drwxr-xr-x. 2 root root 4.0K Sep 17 17:58 ansible-1.9.2-py2.6.egg-info
drwxr-xr-x. 10 root root 4.0K Sep 17 17:58 ansible
[root@myhost site-packages]# rm -rf ansible-2.0.0-py2.6.egg
[root@myhost site-packages]# /usr/bin/ansible --version
ansible 1.9.2
configured module search path = NoneThis worked for me