Installation
After this page, you will have bolt-pipeliner installed and ready to run with the bolt command. You will also know when to add the optional development and Spark extras.
bolt-pipeliner 0.2.6 requires Python 3.10 or newer.
Install the package
Create and activate a virtual environment, then install the base package:
python -m venv .venv
source .venv/bin/activate
pip install "bolt-pipeliner==0.2.6"Optional extras
Install development tools when you are working on the framework or tests:
pip install "bolt-pipeliner[dev]==0.2.6"Install Spark support when your jobs use Spark base classes:
pip install "bolt-pipeliner[spark]==0.2.6"Confirm the CLI is available
Run the help command to verify the install:
bolt --helpYou should see the init, run, test, and generate subcommands.
