pipx install divbase-cliIf you do not have pipx installed, you can install it by following the official instructions from pipx.
!!! info "why pipx and not pip?" Pipx is recommended for command-line tools that need to be run from the terminal. With pipx, the tool is installed in an isolated environment and made available globally, which avoids dependency conflicts with other Python packages on your system.
To upgrade your prior install of divbase-cli, use:
pipx upgrade divbase-cli!!! info "Which version is installed?" To check which version of divbase-cli is currently installed, run:
```bash
divbase-cli --version
```
If you use the package manager uv, you can install divbase-cli using UV's equivalent to pipx (uv tool):
uv tool install divbase-cliAnd to upgrade an existing installation:
uv tool upgrade divbase-cliIf you would prefer to manually create a virtual environment with for example conda/mamba/venv then you can install divbase-cli with pip after activating your virtual environment.
For example, with conda:
conda create -n divbase python=3.13
conda activate divbase
pip install divbase-cliAnd to upgrade later:
conda activate divbase
pip install --upgrade divbase-cli