1. 常用设置
1.1 远程图片显示
假设已经配置好了远程开发,只不过还不能显示远程机器上的图片:
解决方法是:
修改 /etc/ssh/ssh_config 里的参数,设置 ForwardX11 yes(取消注释即可);
修改上述参数也可以用vscode左侧Remote Explorer按钮里的设置,选中/etc/ssh/ssh_config,然后在vscode里面改就行。
1.2 python显示类函数的颜色
有些主题只显示最基本的颜色,比如def、return的颜色;
有的主题显示的更丰富,设置位置: 设置—>在搜索栏输入 color—>找到 Workbench:Color Theme,选一个就行,可以多试几个,容易找到显示颜色的主题(修改完立刻就能看到,不用做别的操作)。
1.3 debug设置参数
下面是一个文件夹内 .vscode/launch.json文件,用于配置debug的参数:
(1)configurations.programe是要debug的脚本路径;
(2)configurations.python是要用的python路径;
(3)args: 是要debug脚本的外参数
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"program": "/path/to/your/pyfile/to/debug.py",
"console": "integratedTerminal",
"python": "/version/of/python/to/use/python",
"justMyCode": true,
"args":["--para1", "para1-value", "--para2", "para2-value"
]
}
]
}
2. 常用插件
3. 故障排除
3.1 jupyter notebook突然连不上
我是上午更新了一下vscode,下午用VScode就没法用jupyter notebook;
报错信息是:
vscode jupyter notebook Error loading webview: Error: Could not register service workers: InvalidStateError: Failed to register a ServiceWorker: The document is in an invalid state…
找到StackOverflow上一个回答,管用,说是可能后台哪个进程还在用jupyter notebook;
解决办法是,打开终端,杀死所有code进程
killall code