tasks.json 465 B

123456789101112131415
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "activate_lqagentplatform", // 必须和 launch.json 里的 preLaunchTask 名称一致
  6. "type": "shell",
  7. "command": "conda activate lqagentplatform", // 激活 Conda 环境的命令
  8. "args": [],
  9. "presentation": {
  10. "reveal": "silent" // 执行时不弹窗(可选)
  11. },
  12. "problemMatcher": []
  13. }
  14. ]
  15. }