我正在用.exe从R调用一个system("script.exe object")。
我得到了Warning: running command had status 127。我知道这意味着还没有找到.exe文件。
我在窗户上。当我使用shell而不是system时,它就像一种魅力。但是,我正在设计一个闪亮的应用程序,它将部署在Linux环境(shinyapps.io)中。这就是我需要使用system的原因。
编辑
在Windows上,它按照建议的system(paste("cmd.exe /c", "script.exe object"), in
我在Linux()中编写了一个C GTK程序,并在Linux mint中用 way.now编译了它。当我单击windows 10中的a.exe文件时,我将a.exe文件发送到我的windows 10计算机上以执行it.but。
the program can't start because <some files that I have listed in notepad in scrennshot> is missing from your computer.try reinstalling the program to fix this problem
我的w
在我的Arch机器上,我安装了Mono C#编译器5.20.1.0版本。今天,我在C#中创建了一个简单的hello world程序,如下所示:
using System;
public class Program
{
public static int Main()
{
Console.WriteLine("Hello world of C# !");
Console.WriteLine();
return 0;
}
}
我去了bash终端,并将上面的程序编译为
$ mcs t.cs
这在工作目录
通常,我的Linux允许我创建可运行的可执行文件(如a.out),但是当我试图从互联网下载.exe时,它基本上是受权限限制的(用户都没有执行(-x)权限)。问题是,当我用chmod u+x或chmod 777更改文件权限,并试图运行程序时,我总是收到以下错误消息:
run detectors: unable to find an interpreter for ./[file_name].exe
其中文件_名字代表文件的名称。由于我的Linux经验和知识非常薄弱,而且我做了一些研究,但没有发现任何有这个问题的人,任何帮助都将是非常感谢的!
PS。我的操作系统是Ubuntu16.04.3 LTS