From 9ad52c7ad0b507f277e89230523199511f8a1ac5 Mon Sep 17 00:00:00 2001 From: g3nsvrv <11720535+G3NSVRV@users.noreply.github.com> Date: Thu, 6 Jun 2024 10:18:38 -0400 Subject: [PATCH] Update README.md changing requests-kerberos package from yum to GCC, which is a missing compiler to compile pywinrm[kerberos]. requests-kerberos can be installed through pip which is recommended. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c8b132c..56f8d69 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,7 @@ In resume, to use Kerberos authentication the following requirements are needed: ```bash $ sudo apt-get install python-dev libkrb5-dev +$ pip install wheel $ pip install pywinrm[kerberos] $ pip install requests-kerberos $ pip install pexpect @@ -117,7 +118,8 @@ $ pip install pexpect #### for RHEL/CentOS/etc: ```bash -$ sudo yum install python-devel krb5-devel krb5-workstation requests-kerberos +$ sudo yum install python-devel krb5-devel krb5-workstation gcc +$ pip install wheel $ pip install pywinrm[kerberos] $ pip install requests-kerberos $ pip install pexpect