Install and Upgrade the CLI
The biosimulant package on PyPI is the canonical CLI distribution.
Recommended: pipx
pipx keeps command-line applications isolated while exposing their commands on your PATH.
pipx install biosimulant
biosimulant --versionUpgrade in place:
pipx upgrade biosimulantInstall an exact release:
pipx install "biosimulant==0.0.22"Alternative: uv
uv tool install biosimulant
uv tool upgrade biosimulantPin an exact release with:
uv tool install "biosimulant==0.0.22"Project or CI environment
For a virtual environment or locked CI job:
python -m pip install "biosimulant==0.0.22"
python -m biosimulant --versionAvoid an unpinned install in reproducible CI workflows.
Desktop
Desktop contains the exact wheel and dependency lock tested with that Desktop release. Use Settings > CLI Tools to provision or repair the managed package and shell launcher.
Cloud Studio
Cloud Studio workspaces already contain the CLI. Do not reinstall it inside a workspace unless a support procedure explicitly asks you to do so.
biosimulant --version
biosimulant doctorShell completion
For bash:
register-python-argcomplete biosimulant >> ~/.bash_completionFor zsh:
autoload -U bashcompinit
bashcompinit
eval "$(register-python-argcomplete biosimulant)"