如何在我的 Windows 控制台中打开 Scilab?

How can I open Scilab in my Windows console?

如何在我的 Windows 控制台中打开 Scilab?我安装了它,当我在搜索栏中搜索时看到它,但我不知道如何在我的控制台中 运行 它。我想在我的集成 Visual Studio 代码终端中使用它。

我不知道 Scilab 是什么,没见过,没用过。然而,至于 VScode 终端设置,这是 Microsoft 有据可查的事情...

User and Workspace Settings

Integrated Terminal

... 之前在 Whosebug 上已经介绍过。

There is a way to make this happens with these steps by installing an extension:

Find an extension called Shell launcher and install it. Reload VS Code if you want or after you finished all steps.

Go to Files --> Preferences --> Settings and this will open settings.json file and you then insert this (you can edit this to your heart's content):

Code:

"shellLauncher.shells.windows": [
    {
        "shell": "C:\Windows\<sysnative>\cmd.exe",
        "label": "cmd"
    },
    {
        "shell": "C:\Windows\<sysnative>\WindowsPowerShell\v1.0\powershell.exe",
        "label": "PowerShell"
    },
    {
        "shell": "C:\Program Files\Git\bin\bash.exe",
        "label": "Git bash"
    },
    {
        "shell": "C:\Windows\<sysnative>\bash.exe",
        "label": "WSL Bash"
    }
]

更新

我刚刚在 Youtube 上看了看 Scilab,它有自己的完全独立的 GUI 控制台。你不能在 VScode 中 运行 一个 GUI 控制台,只有类似终端的控制台,所以,如果它确实有一个 cmd.exe 类似,bash 类似的控制台,那么上面方法适用。