基本的にはこの記事を参考にすると良い。補足として…
- 例えば「アルゴリズムと数学」について、VSCodeにディレクトリが自動作成するためには、
acc new math-and-algorithm
を実行すれば良い。 - ローカル環境に複数のPython環境が複数ある場合は、
tasks.jaon
を以下のように変更すると良い。
tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "CheckTestCase",
"type": "shell",
"command": "cd ${fileDirname} && oj t -c 'python3 main.py' -d ./tests/",
"presentation": {
"reveal": "always",
"focus": true,
"panel": "shared"
}
},
{
"label": "SubmitCode",
"type": "shell",
"command": "cd ${fileDirname} && acc s ${fileBasename} -- --langage:xxx", // 変更点。xは使用するPythonインタープリタ
"presentation": {
"reveal": "always",
"focus": true,
"panel": "shared"
}
}
]
}