Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 847 Bytes

File metadata and controls

57 lines (37 loc) · 847 Bytes

Installation Guide

This document provides detailed instructions for installing the pentestkit.

Prerequisites

Before installing, make sure you have the following:

  • Python 3.8 or higher
  • pip (Python package installer)
  • virtualenv or venv (recommended but optional)

Installation Methods

1. From PyPI (Recommended)

The simplest way to install pentestkit is from PyPI:

pip install pentestkit

2. From Source

To install from source:

# Clone the repository
git clone https://github.com/rahulkaushal04/pentestkit.git
cd pentestkit

# Install
pip install .

Running After Installation

Verify the installation by running:

pentestkit --help

or

import pentestkit
print(pentestkit.__version__)

Uninstallation

To remove PentestKit:

pip uninstall pentestkit