Geany のデフォルトの Python コンパイラ/実行コマンドを変更しようとしています。
調べてみると、`/usr/share/geany/filetypes.python'の最後の2行を次のように変更する必要があることがわかりました。
#compiler=python -m py_compile "%f"
#run_cmd=python "%f"
compiler=python3 -c "import py_compile; py_compile.compile('%f')"
run_cmd=python3 "%f"
ただし、Geany を再起動しても、Build -> Set Build Commands
古いコマンドが表示され、py3 スクリプトを実行しようとするとエラーが発生します。