On macOS where only python3 is installed (no python shim), bare
`python` calls fail with 'No such file or directory'.
Adds `PYTHON ?= python3` variable. Replaces all bare `python`
calls with `$(PYTHON)` across: train-local, vibes,
adversary-value-violations, ingest, curated, convert.
Override: make vibes PYTHON=python
Closes#660
Refs Timmy_Foundation/the-nexus#1471