在 Fedora 中安装和 运行 GAMS

Install and run GAMS in Fedora

我想在 Fedora (23) 中使用 GAMS。我已经阅读了有关如何在 Unix 中安装 GAMS 的信息 (https://www.gams.com/help/index.jsp?topic=%2Fgams.doc%2Fuserguides%2Fuserguide%2F_u_g__i_n_s_t_a_l_l.html&cp=0_1)。

我已将文件下载到文件夹并成功 运行: chmod -x linux_x64_64_sfx.exe

我试了运行~/linux_x64_64_sfx.exe但是不行,后来试了

./linux_x64_64_sfx.exe

我认为这是 fedora 命令。我收到以下消息:

UnZipSFX 5.52 of 28 February 2005, by Info-ZIP (http://www.info-zip.org).
replace gams24.7_linux_x64_64_sfx/libxprs.so.28.01.14? [y]es, [n]o, [A]ll, [N]one, [r]ename:

我输入了一次 A,得到了一个非常大的消息列表,类似于下面的消息:

inflating: gams24.7_linux_x64_64_sfx/getNAnan.m  
  inflating: gams24.7_linux_x64_64_sfx/libgrbcclib64.so  
finishing deferred symbolic links:
  gams24.7_linux_x64_64_sfx/libcplex.so -> libcplex1263.so
  gams24.7_linux_x64_64_sfx/libgurobi.so -> libgurobi.so.6.5.2

然后什么也没发生。我又试了运行ning ./linux_x64_64_sfx.exe得到了同样的信息,这次我输入N,得到的是短信息:

gams24.7_linux_x64_64_sfx/libcplex.so exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libgurobi.so exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libxprs.so.28.01 exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libxprl.so exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libxprl.so.x7.9 exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libxprs.so exists and is a symbolic link.
gams24.7_linux_x64_64_sfx/libknitro.so.10 exists and is a symbolic link.

然后什么也没发生。

我怎样才能运行呢?

这似乎是作为自解压存档提供的("sfx" 是指代此类存档的典型约定;"exe" 是 DOS/Windows 的东西,但看起来它们只是保持一致,它是一个 Linux 二进制文件)。

您看到的消息来自该提取。它说您正在覆盖 gams24.7_linux_x64_64_sfx/ 子目录中的文件这一事实强烈表明您 已经 运行 它,现在又在做同样的事情。它告诉您文件已经存在,我敢打赌如果您这样做 ls gams24.7_linux_x64_64_sfx/,您会看到它们。

您链接的说明给出

  1. Change to the GAMS system directory and run the program ./gamsinst.

...你试过了吗?