problem to run system(''.exe) on Mac

5 ビュー (過去 30 日間)
erasmo mancusi
erasmo mancusi 2012 年 1 月 28 日
回答済み: Walter Roberson 2017 年 2 月 10 日
Hi to All I have recently migrate to MacosX 10.7.2 from windows and I use Matlab 2009b.
On my mac when I try to run a system command (equivalently bang or unix) appears the following error:
>system('myprogram.xe')
bin/bash/ myprogram.exe command not found.
Really I do not know how to strart to fix this problem any help suggestion is welcome.
erasmo

採用された回答

Daniel Shub
Daniel Shub 2012 年 1 月 28 日
It is extremely unlikely that any file ending in .exe will run on anything OS other than Microsoft Windows. You need to find the version of the program written for OS X .
  2 件のコメント
Walter Roberson
Walter Roberson 2012 年 1 月 28 日
Either that or you need to specify which Windows you are co-hosting, such as Parallels. If you have a something like Parallels then it might be possible to fire up a .exe in the co-hosted operating system.
rob
rob 2016 年 3 月 5 日
i'm exactly trying to run a windows file, using parallels, with the system function. But no results.
Any help? Thank you in advance

サインインしてコメントする。

その他の回答 (3 件)

erasmo mancusi
erasmo mancusi 2012 年 1 月 28 日
Ok! It's not possible to run an exe file in a different suystem but the commands "system" "bang" , "unix" and "dos" too do not work n Matlab (on MACOSX) even if I trie to run an application file generate in the same operative system. Any suggestion is appreciate. Erasmo
  1 件のコメント
Walter Roberson
Walter Roberson 2012 年 1 月 28 日
You might be having path problems. Try
!echo $PATH
and check to see whether the directory that has the program is listed in the PATH. If it is not then you will either need to adjust the shell path or name the directory explicitly.

サインインしてコメントする。


erasmo mancusi
erasmo mancusi 2012 年 1 月 30 日
編集済み: Walter Roberson 2017 年 2 月 9 日
Hi, thanks for your help. I solved the problem installing wine on MAC and the command is
system('wine myprogram.exe')
thx
  1 件のコメント
Javier de la Torre Costa
Javier de la Torre Costa 2017 年 2 月 9 日
Hi I am interested in this problem but I don't understand the solution you give, could you explain me more detailed pls?

サインインしてコメントする。


Walter Roberson
Walter Roberson 2017 年 2 月 10 日
For Parallels on the Mac:
  • first start a virtual machine
  • now use one of the two methods described at http://osxdaily.com/2013/08/08/change-default-application-open-files-mac-os-x/ to indicate that you either want to open the particular .exe with Parallels Desktop or that you want to always open all .exe with Parallel Desktop. Note: you might have difficulty selecting "always open with" if the file resides on a Windows partition as it will probably say you do not have permission.
  • Now, inside MATLAB, to run the executable, system() an 'open' command naming the .exe . You can pass it arguments using --args . For example,
system('open matlab.exe --args -r "disp('hello');quit"')
Instead of setting up parallels as the default application, you should be able to use open with the -a or -b options. More information on those flags is at http://brettterpstra.com/2014/08/06/shell-tricks-the-os-x-open-command/

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by