Getting error: /bin/sh scriptcs: command not found
Getting error: /bin/sh scriptcs: command not found
我正在为 Mac、运行ning 扩展 CodeRunner 使用 Visual Studio 代码。
我有一个简单的程序:
using System;
namespace HelloWorldApplication {
class HelloWorld {
static void Main(string[] args) {
Console.WriteLine("hellowol");
}
}
}
当我 运行 使用右上角的播放按钮时,出现以下错误:
/bin/sh scriptcs: command not found
然后
[Done] exited with code=127 in 0.008 seconds
程序未显示所需的输出。
编辑:非常感谢@VonC。他的方法奏效了。
任何人的专业提示:使用
安装 scriptcs
brew install scriptcs
考虑 the prerequisite for filipw/vscode-scriptcs-runner
是:
scriptcs should be installed on your machine.
确保从 shell 会话中启动 VSCode,其中 scriptcs 在您的 $PATH
中(意味着 which scriptcs
不会 return 空输出)
我正在为 Mac、运行ning 扩展 CodeRunner 使用 Visual Studio 代码。 我有一个简单的程序:
using System;
namespace HelloWorldApplication {
class HelloWorld {
static void Main(string[] args) {
Console.WriteLine("hellowol");
}
}
}
当我 运行 使用右上角的播放按钮时,出现以下错误:
/bin/sh scriptcs: command not found
然后
[Done] exited with code=127 in 0.008 seconds
程序未显示所需的输出。
编辑:非常感谢@VonC。他的方法奏效了。 任何人的专业提示:使用
安装 scriptcsbrew install scriptcs
考虑 the prerequisite for filipw/vscode-scriptcs-runner
是:
scriptcs should be installed on your machine.
确保从 shell 会话中启动 VSCode,其中 scriptcs 在您的 $PATH
中(意味着 which scriptcs
不会 return 空输出)