Run app created in Matlab on Mac
6 次查看(过去 30 天)
显示 更早的评论
Good day! Could anyone please tell me how to run application created in Matlab on Mac? My situation is:
I don't have Matlab on Mac, but I've installed MCR, and I can't understand lines in readme.txt file:
setenv DYLD_LIBRARY_PATH
<mcr_root>/v711/runtime/maci64:
<mcr_root>/v711/sys/os/maci64:
<mcr_root>/v711/bin/maci64:
/System/Library/Frameworks/JavaVM.framework/JavaVM:
/System/Library/Frameworks/JavaVM.framework/Libraries
setenv XAPPLRESDIR <mcr_root>/v711/X11/app-defaults
So what should I do according these lines???
0 个评论
采纳的回答
Chirag Gupta
2011-8-9
You need to set two environment variables to the following.
DYLD_LIBRARY_PATH and XAPPLRESDIR. The mcr_root is the location where you installed the MCR.
Open a Terminal: Execute the commands above (replacing mcr_root with actual location), navigate to where you have the Matlab app, and run it.
3 个评论
Titus Edelhofer
2011-8-11
your google tells you the right thing to do: you could just enter
export DYLD_LIBRARY_PATH = <mcr_root>/v711/runtime/maci64:<mcr_root>/ ...
export XAPPLRESDIR = ...
Titus
更多回答(2 个)
Jerome Lecoq
2013-1-4
This post is very good demonstration of how terrible the deployment process is on the mac. We SHOULD be able to just click on it (like in the windows plateform).
1 个评论
Sagar Zade
2021-1-29
编辑:Sagar Zade
2021-1-29
For newer MATLAB versions this post might be helpful: Why do I receive an error about "libmwlaunchermain.dylib" library not loaded when I attempt to execute my compiled application on macOS?
Maxim
2011-8-17
2 个评论
Chirag Gupta
2011-8-17
In your root you will most probably have an hidden .bashrc file or a .profile file. You can edit this file and set the environment variables there. This will ensure that these variables persist
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!