我正在使用Visual Studio Code for Mac,运行扩展名CodeRunner。
我有一个简单的程序:

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。他的方法行得通。
适用于任何人的专业提示:使用安装脚本
brew install scriptcs

最佳答案

the prerequisite视为 filipw/vscode-scriptcs-runner 是:



确保从$PATH中包含脚本的shell session 中启动VSCode(这意味着which scriptcs不会返回空输出)

关于c# - 出现错误:/bin/sh scriptcs: command not found,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51923878/

10-11 00:47