LoginSignup
0
0

More than 5 years have passed since last update.

macOS High SierraでSciLabを動かす覚書

Posted at

手順

1.http://www.scilab.orgからMac用のバイナリをダウンロードする。
2.JREあるいはJDKをインストールしていないときには、インストールする。
3./Library/Java/JavaVirtualMachines/jdk_'jdkバージョン'.jdk/Contents/Info.plistを書き換える(ルート権限が必要)。

Info.plist中の

Info.plist
    <key>JVMCapabilities</key>
    <array>
            <string>CommandLine</string>
    </array>

を下記に書き換える。

Info.plist
    <key>JVMCapabilities</key>
    <array>
            <string>BundledApp</string>
            <string>CommandLine</string>
            <string>JNI</string>
    </array>

参考

Modifying Oracle’s Java SDK to run Java applications on OS X
macOS High SierraでSciLabを動かすまで

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0