Skip to content

install

github-actions[bot] edited this page Oct 3, 2025 · 4 revisions

Installation Guide

evil-winrm-py is available on:

For Kali Linux and Parrot OS Users

If you are using Kali Linux or Parrot OS, you can install evil-winrm-py directly from the package manager:

sudo apt update
sudo apt install evil-winrm-py

Installation of Kerberos Dependencies on Linux

sudo apt install gcc python3-dev libkrb5-dev krb5-pkinit
# Optional: krb5-user

Note

[kerberos] is an optional dependency that includes the necessary packages for Kerberos authentication support. If you do not require Kerberos authentication, you can install evil-winrm-py without this extra.

Using pip

You can install the package directly from PyPI using pip:

pip install evil-winrm-py[kerberos]

Installing latest development version directly from GitHub:

pip install 'evil-winrm-py[kerberos] @ git+https://github.com/adityatelange/evil-winrm-py'

Using pipx

For a more isolated installation, you can use pipx:

pipx install evil-winrm-py[kerberos]

Installing latest development version directly from GitHub:

pipx install 'evil-winrm-py[kerberos] @ git+https://github.com/adityatelange/evil-winrm-py'

Using uv

If you prefer using uv, you can install the package with the following command:

uv tool install evil-winrm-py[kerberos]

Installing latest development version directly from GitHub:

uv tool install git+https://github.com/adityatelange/evil-winrm-py[kerberos]

Clone this wiki locally