Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install burp via python pip




burp - Annotated burp interfaces for python/jython, it belongs to Classifiers:

- Programming Language :: Python :: Implementation :: Jython

When you know about this project and you want to new install burp to support your project or you get trouble as ModuleNotFoundError: No module named "burp" or ImportError: cannot import name "burp" in your project, let follow this tutorial to install burp



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_burp_env

- Active the virtual environment

test_burp_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_burp_env

- Active the virtual environment

source test_burp_env/bin/active


Step 2: OK, now, let flow below content to start the installation burp

To install burp on Windows(CMD):

py -m pip install burp

To install burp on Unix/macOs:

pip install burp


Step 3: If you want to install a specific burp version, add ==<burp version> to the end command line

Example:

pip install burp==1.0


Please see the version list below table:

VersionReleased dateCommand
burp 1.272021-04-20T20:35:43Windows:

py -m pip install burp==1.27

Unix/macOs:

pip install burp==1.27

burp 1.262021-04-20T20:12:21Windows:

py -m pip install burp==1.26

Unix/macOs:

pip install burp==1.26

burp 1.252021-03-26T17:40:10Windows:

py -m pip install burp==1.25

Unix/macOs:

pip install burp==1.25

burp 1.12021-03-25T12:57:36Windows:

py -m pip install burp==1.1

Unix/macOs:

pip install burp==1.1

burp 1.02021-03-15T19:09:45Windows:

py -m pip install burp==1.0

Unix/macOs:

pip install burp==1.0


Step 4: Otherwise, you can install burp from local archives:

Download the distribution file from burp-1.27.tar.gz or the specific burp version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_burp_downloaded_file>

On Unix/macOs:

pip install <path_to_burp_downloaded_file>


List distribution:

- burp-1.0.tar.gz
- burp-1.1.tar.gz
- burp-1.25-py3-none-any.whl
- burp-1.25.tar.gz
- burp-1.26-py3-none-any.whl
- burp-1.26.tar.gz
- burp-1.27-py3-none-any.whl
- burp-1.27.tar.gz


Project link:

- Homepage