1、首先安装好插件:
- python
- pylance
- pylint
- remote ssh
- remote development
按顺序安装好这五个插件。
2、ssh连接好远程服务器,然后选择服务器端合适的python解释器,即可远程debug了。
不想手动切换也可以设置默认解释器,windows操作系统下按键F1,输入 Open User Settings,在搜索框输入python,然后打开它的settings.json文件,加入这条命令:
"python.defaultInterpreterPath": "<Interpreter_location>"
形式如下:
{
"workbench.colorTheme": "escook Light",
....
"python.defaultInterpreterPath": "~/miniconda3/envs/dgl/bin/python",
}