且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我无法打开并运行exe文件

更新时间:2023-02-22 20:10:36

链接的 GitHub 在其自述文件中提到您需要 FFTW 运行此软件,如备注部分所述:

The linked GitHub repository mentions in its README that you need DLLs from FFTW to run this software, as mentioned in the "Notes" section:



  • 提供的可执行文件被编译为64位操作系统,需要运行 FFTW .dlls。

  • The executable provided up was compiled for a 64-bit OS and requires the FFTW .dlls to run.

除非您可以发布确切的错误消息,否则我猜这是你所缺少的,那就是您需要去获取所需的库。

Unless you can post the exact error message you got, I'm guessing this is what you're missing and that is where you need to go to get the required libraries.

此外,请注意,这似乎是一个命令行程序,也是一个期望参数的程序。如果双击它不会发生任何事情,那么这可能是因为程序找不到任何提供的参数并立即退出。您将需要在命令行环境(如 cmd.exe )中运行它,并提供您需要的任何参数(例如 - 在中,其中似乎指定您的输入文件并且是必需的)。

Additionally, note that this appears to be a command line program, and one which expects arguments at that. If nothing happens when you double-click it, then this is likely because the program cannot find any supplied arguments and immediately exits. You will need to run it in a command line environment such as cmd.exe and supply any arguments you need (such as --in, which appears to specify your input file and is required).