Taurus Installation on Debian 12
Created: 2025-03-17
Last update: 2025-03-17
Simple Taurus Installation Manual for Debian 12 #
Install Taurus #
- Prepare a basic Debian 12 VM from netinst amd64 image.
- Make sure you have whatever prerequisites you need.
apt update
apt install -y vim
- Install Python and other required packages.
apt install python3 default-jre-headless python3-tk python3-pip python3-dev libxml2-dev libxslt-dev zlib1g-dev net-tools
- Install
python3.11-venv
as you will need a virtual environment.
apt install python3.11-venv
- Create and activate the virtual environment.
python3 -m venv myenv
source myenv/bin/activate
- Install Taurus.
pip install bzt
Test if it works #
- Now, as in the official example, create a config file with a test definition.
vim quick_test.yml
execution:
- concurrency: 100
ramp-up: 1m
hold-for: 5m
scenario: quick-test
scenarios:
quick-test:
requests:
- https://192.168.1.84
- Run this simple test.
bzt quick_test.yml