当我在OS X Yosemite 10.10公共测试版上安装Matlab 2014a时,它显示了Matlab徽标,然后说:“安装MATLAB意外退出。”
1.我在尝试安装Matlab之前安装了JDK / JRE,但它仍无效。
2.在安装Matlab之前,我根据此视频https://www.youtube.com/watch?v=GoQnzIyOkB0将SystemVersion.plist中的ProductVersion更改为10.90或10.9,但它仍然不起作用。
我该怎么办?谢谢!
答案 0 :(得分:3)
对于那些在10.10 beta 5& 5中遇到同样问题的人。 Matlab R2014a。
您可以使用以下bash脚本解决问题:
#!/bin/sh
# Fool the system into believing you are using Mavericks by replacing
# the version 10.10 to 10.90, you obviously need sudo to do this.
sudo vim -c "%s/10.10/10.90/ge" -c 'w!' -c 'q' "/System/Library/CoreServices/SystemVersion.plist"
# Launch Matlab via the executable
/Applications/MATLAB_R2014a.app/bin/matlab
# Revert the version change in the SystemVersion.plist file
sudo vim -c "%s/10.90/10.10/ge" -c 'w!' -c 'q' "/System/Library/CoreServices/SystemVersion.plist"
然后所有要做的就是把这个脚本放在PATH的某个地方并从命令行调用它来在10.10中使用Matlab:)