OpenShot will Python 3.x haben, ich habe aber irgendwann später mal ein Tool installiert, das nur mit Python 2.x läuft.
Sehen wir mal nach, was alles so vorhanden ist...
> which python2
/usr/bin/python2
ls -l /usr/bin/python2
lrwxrwxrwx 1 root root 9 Apr 18 2019 /usr/bin/python2 -> python2.7
which python3
/usr/bin/python3
ls -l /usr/bin/python3
lrwxrwxrwx 1 root root 9 Aug 6 10:12 /usr/bin/python3 -> python3.6
Womöglich genügt es bei einem der Tools die shebang zu ändern:
sed --in-place=_$(date +"%F_%T" ) -e 's/#!.*python/#!\/usr\/bin\/python3/' test.py
... Das kann man dann auch "verscripten".