On 01/29/2014 05:47 PM, [email protected] wrote:
I'm having an issue using the ec2 module with ansible, version 1.4.4
on OSX. I keep getting
msg: boto required for this module
I am not using virutalenv, python was installed with brew and both
ansible and boto were installed with pip. I have removed and
reinstalled each to be sure.
Anyone know what might be wrong?
thanks
E.
--
You received this message because you are subscribed to the Google
Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
Check if boto was installed to the site-packages for the default python
in your path:
python -c "import boto ; print boto.Version"
Also figure out where site packages is for your default python ...
python -c "import site; print site.getsitepackages()"
python -c "from distutils.sysconfig import get_python_lib;
print(get_python_lib())"
Make sure there's a boto subdir in one of those directories.
If you can't find boto, the default python in your path is probably not
the one brew is using.
--
You received this message because you are subscribed to the Google Groups "Ansible
Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.