0

I recently upgraded to macOS high Sierra and after that Scilab-6.0.0 has stopped working [nothing appears on screen when I open it]. I also tried installing older version of Scilab but that also did not work.

sahilbansal17
  • 46
  • 1
  • 5

2 Answers2

2

A found a solution in http://bugzilla.scilab.org/show_bug.cgi?id=15307, but is really ugly. Many users are saying the best thing to do is to wait for the next Scilab release to fix the bug. But those who cannot wait, here a tweak that I found in the comments and worked for me.

qiyj 2017-10-27 15:10:51 CEST

$ sudo cp "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib" "/Applications/scilab-6.0.0.app/Contents/MacOS/lib/thirdparty/"
$ sudo cp "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib" "/Applications/scilab-6.0.0.app/Contents/MacOS/lib/thirdparty/".

Then you can run scilab in MacOS High Sierra by "Try Anyway" method, and if Java 6 is requested, refer to the Scilab download page.

Cheers.

0

This worked for me

$ sudo cp "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib" "/Applications/scilab-6.0.0.app/Contents/MacOS/lib/thirdparty/"
$ sudo cp "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib" "/Applications/scilab-6.0.0.app/Contents/MacOS/lib/thirdparty/".
Amit kumar
  • 81
  • 1
  • 10
  • Thank you for this code snippet, which might provide some limited short-term help. A proper explanation would greatly improve its long-term value by showing why this is a good solution to the problem and would make it more useful to future readers with other, similar questions. Please edit your answer to add some explanation, including the assumptions you've made – Shawn C. Jan 25 '18 at 17:20
  • okay i am linking a youtube tutorial here : https://www.youtube.com/watch?v=-yaYXBXE1RM – Amit kumar May 29 '18 at 16:47