'Looks like the system sees it as already being installed: MacBook-Pro:playbooks anthony$ pip2.7 install pycrypto Requirement already satisfied (use --upgrade to upgrade): pycrypto in /Library/Python/2.7/site-packages Cleaning up...
On Monday, May 14, 2018 at 10:22:05 AM UTC-4, Ab Generette wrote: > > Ok, > > Here's what I got, so, I'll see what I can find on the module mentioned: > > MacBook-Pro:playbooks anthony$ python -c "from requests_ntlm import > HttpNtlmAuth" > Traceback (most recent call last): > File "<string>", line 1, in <module> > File "/Library/Python/2.7/site-packages/requests_ntlm/__init__.py", line > 1, in <module> > from .requests_ntlm import HttpNtlmAuth > File "/Library/Python/2.7/site-packages/requests_ntlm/requests_ntlm.py", > line 5, in <module> > from cryptography import x509 > ImportError: No module named cryptography > > > > On Monday, May 14, 2018 at 12:04:55 AM UTC-4, Jordan Borean wrote: >> >> I would try and import the requests_ntlm package and try and find out why >> it is failing to be imported. It could be that a required package like >> cryptography isn't installed. To do this run >> >> python -c "from requests_ntlm import HttpNtlmAuth" >> >> If the import fails it will give you an error saying what it failed to >> import and give you an indication of what needs to happen. Make sure when >> you are testing this you are running the command on the Python that Ansible >> is installed from. >> >> Thanks >> >> Jordan >> > -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/f16bacac-1212-41a5-9da4-080698bb12c4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
