Install advertools

Install

Installation is simple and straightforward, from the command line run:

python3 -m pip install advertools

Or, with uv:

uv pip install advertools

This will also install the command line interface, so you can use it with uvx as well:

uvx advertools --help

Upgrade

To upgrade to the latest version:

python3 -m pip install --upgrade advertools

Specific version

To install a specific version:

python3 -m pip install advertools==0.15.1

Verify

If all went well, you should be able to verify your installation right from the command line:

advertools --version

# OR

adv -v

This should print the version you installed without errors.

Or, you can do the same in a Python session:

import advertools as adv
adv.__version__