You've got an old version of requests that's probably owned by an OS package (IIRC Ubuntu 14.04 has this issue out of the box). pip won't uninstall OS-owned packages, even though pywinrm declares it requires it.
You can usually fix this with: pip install "requests>=2.10.0" On Thursday, September 29, 2016 at 9:41:57 AM UTC-7, JayB wrote: > > Hi Guys, > > I'm new to Ansible. I'm trying to connect to ansible windows host. I have > configured for windows by following the link ( > http://darrylcauldwell.com/how-to-setup-an-ansible-test-lab-for-windows-managed-nodes-custom-windows-modules/). > > Now, I'm not able to ping the windows server and getting the below error. > > # ansible windows -i hosts -m win_ping > 10.20.10.179 | FAILED! => { > "failed": true, > "msg": "ssl: 'Session' object has no attribute > 'merge_environment_settings'" > > My intention to copy a file from my Ubuntu Ansible Controller machine and > run the file on Windows host. Can anyone suggest me on this? > -- 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/4b8974d1-dad0-42b6-8b2f-25688c928ee5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
