This document provides detailed instructions for installing the pentestkit.
Before installing, make sure you have the following:
- Python 3.8 or higher
- pip (Python package installer)
- virtualenv or venv (recommended but optional)
The simplest way to install pentestkit is from PyPI:
pip install pentestkitTo install from source:
# Clone the repository
git clone https://github.com/rahulkaushal04/pentestkit.git
cd pentestkit
# Install
pip install .Verify the installation by running:
pentestkit --helpor
import pentestkit
print(pentestkit.__version__)To remove PentestKit:
pip uninstall pentestkit