python | vscode常用插件和用法整理

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值