Linux 在Ubuntu终端上启动gams studio的cllable名称是什么?

Linux 在Ubuntu终端上启动gams studio的cllable名称是什么?,linux,ubuntu,optimization,gams-math,Linux,Ubuntu,Optimization,Gams Math,我知道我的问题很简单,但我真的需要你的帮助,我感谢所有给我小费的人。我最近通过这个安装了Gams以达到优化目的,它是成功的。我希望使用gams studio,但我无法启动它。不幸的是,我是Ubuntu的新手,我只知道要运行一个应用程序,我应该在命令行中键入它的名称,然后按Enter键,但它对我不起作用。当我在终端中运行gams时,我得到以下信息,表明我的安装是完美的: (base) amir@amir-ThinkPad-T420:~$ gams --- Job ? Start 02/23/20

我知道我的问题很简单,但我真的需要你的帮助,我感谢所有给我小费的人。我最近通过这个安装了Gams以达到优化目的,它是成功的。我希望使用gams studio,但我无法启动它。不幸的是,我是Ubuntu的新手,我只知道要运行一个应用程序,我应该在命令行中键入它的名称,然后按Enter键,但它对我不起作用。当我在终端中运行gams时,我得到以下信息,表明我的安装是完美的:

(base) amir@amir-ThinkPad-T420:~$ gams
--- Job ? Start 02/23/20 13:03:05 30.2.0 r482c588 LEX-LEG x86 64bit/Linux
*** 
*** GAMS Base Module 30.2.0 r482c588 Released Feb 07, 2020 LEG x86 64bit/Linux    
*** 
*** GAMS Development Corporation
*** 2751 Prosperity Ave, Suite 210
*** Fairfax, VA 22031, USA
*** +1 202-342-0180, +1 202-342-0181 fax
*** support@gams.com, www.gams.com
*** 
*** GAMS Release     : 30.2.0 r482c588 LEX-LEG x86 64bit/Linux
*** Release Date     : Released Feb  7, 2020
*** To use this release, you must have a valid license file for
*** this platform with maintenance expiration date later than
*** Jan 10, 2020
*** System Directory : /opt/gams30.2_linux_x64_64_sfx/
***
*** License          : /opt/gams30.2_linux_x64_64_sfx/gamslice.txt
*** GAMS Demo license for Amir Baghban             G200221|0002CO-GEN
*** Amir Kabir University of Technology, Holy See                    
*** DL00258400 **GAMS Demo license restricted to non-commercial use**
*** amirbaghban87@gmail.com, Amir Baghban                            
***
*** Licensed platform                             : Generic popular platforms
*** The installed license is valid.
*** Evaluation expiration date (GAMS base module) : Feb 15, 2021
*** Note: For solvers, other expiration dates may apply.
*** Run gamslib model licememo for more details.
*** Status: Normal completion
--- Job ? Stop 02/23/20 13:03:05 elapsed 0:00:00.001

现在我想用gamstudio来编码。我在它的文档页面上读到,gams studio是在gams安装期间安装的,而且,我的Ubuntu18.04有glibc 2.29和FUSE作为gams studio的必要版本。但是我不能通过命令行启动它。

您可以为自己定义一个bash别名。添加如下内容

alias gams_studio='~/path/to/gams/installation/studio/studio.AppImage'
给你的.bashrc。然后,您可以在shell中调用
gams\u studio


确保文件studio.AppImage具有执行标志。如果需要,您可以通过
chmod+x staudio.AppImage
进行设置。

$gams studio
意味着:运行gams求解模型工作室。相反,寻找一个名为
studio
@ErwinKalvelagen的可执行文件,谢谢您的宝贵意见。所以,我想把我的问题编辑成与工作室的名字有关的问题。@ErwinKalvelagen我从Gams论坛得到了答案。他们建议我使用文件管理器并查找AppImage。现在我可以进入Gams工作室了。