0

We use WinRm with CredSSP to connect Windows servers. I am setting up the new server CentOS Stream 8

Based on the document if I install pip3 install pywinrmcredssp this command its not finding this module.

pip3 install pywinrmcredssp
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead.
Collecting pywinrmcredssp
  Could not find a version that satisfies the requirement pywinrmcredssp (from versions: )
No matching distribution found for pywinrmcredssp

How to install this ansible module globally in CentOS Steam 8?

Thanks SR

sfgroups
  • 18,151
  • 28
  • 132
  • 204

1 Answers1

0

The documentation on the ansible page and the package page both list the package name as pywinrm[credssp] instead pf pywinrmcredssp.

Rickkwa
  • 2,197
  • 4
  • 23
  • 34
  • `pip3` is not finding this module also `pywinrmcredssp` giving this message: `Could not find a version that satisfies the requirement pywinrmcredssp (from versions: )` – sfgroups Jul 14 '21 at 20:04
  • The module has the square brackets included. I am able to `pip3 install pywinrm[credssp]` on my machine. – Rickkwa Jul 14 '21 at 21:06
  • 1
    I have to install this first `curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py --force-reinstall`, then pip3 installed worked. `pip3 install pywinrm requests-ntlm requests requests-credssp` – sfgroups Jul 14 '21 at 21:12