Skip to content

development

github-actions[bot] edited this page Aug 23, 2025 · 1 revision

Development Environment Setup

Setup

Download the repository.

git clone https://github.com/adityatelange/evil-winrm-py
cd evil-winrm-py

Create a virtual environment (optional but recommended):

python3 -m venv venv
source venv/bin/activate

Install the required packages:

pip install pypsrp[kerberos]==0.8.1 prompt_toolkit==3.0.51 tqdm==4.67.1

Create a test file

# File: test.py
from evil_winrm_py.evil_winrm_py import main

if __name__ == "__main__":
    main()

Run the test file

python test.py -h

Clone this wiki locally