解决Linux下VScode终端terminal显示为空白的问题

依次检查:

terminal路径设置

File->preference->setting->setting json:

{
    "workbench.iconTheme": "vscode-icons",
    "cSpell.userWords": [

    ],
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "python.jediEnabled": false,
    "editor.fontSize": 18,
    "terminal.integrated.shell.linux": "/bin/bash",
    "python.dataScience.askForKernelRestart": false,
    "[python]": {
        "editor.defaultFormatter": "ms-python.python"
    }
}

“terminal.integrated.shell.linux”: “/bin/bash”,中路径正确

终端环境


打开如图选项

然后问题基本就解决了,如果还没有,欢迎在评论留言

发布了2 篇原创文章 · 获赞 0 · 访问量 31

猜你喜欢

转载自blog.csdn.net/weixin_44405279/article/details/104056697