エラー
[Running] python -u "/***/tempCodeRunnerFile.py"
/bin/sh: python: command not found
解消方法
command + ,
で設定画面を開き、@ext:formulahendry.code-runner
と入力、Code-runner: Executor Map
を探してjsonの設定画面を開く。
(もしくはcommand + p
でsettings.json
と入力する)
code-runner.executorMap"
の"python"
部分を以下のように変更する
"code-runner.executorMap": {
...
"python": "python3 -u",
...
--
プラグイン
Code Runner