====== vscode ====== settings.json ------------- .. code:: JSON { "python.pythonPath": "/Users//miniconda3/envs//bin/python" } launch.json ----------- .. code:: JSON { "version": "0.2.0", "configurations": [ { "name": "Python Module", "type": "python", "python": "/Users//miniconda3/envs//bin/python", "request": "launch", "program": "/Users//miniconda3/envs//bin/", "console": "integratedTerminal", "args": [ "hello-world" ], "cwd": "${workspaceRoot}", "": true } ] } If we translate to english. * Go to ``cwd``. * Use ``python`` to ``launch`` a launcher. * Launcher run ``program`` with ``args`` which will run your command with args. * The result will show on ``console``. * This config is for ``FOLDER_OR_PACKAGE`` only, not whole workspace. shortcut -------- * choose Python Interpreter cmd+P