Open msalese opened 9 years ago
Resolved ! Look at sublime-Ijulia user settings the string:
"julia": "/Applications/Julia-0.4.0-dev-8a49356af7.app/Contents/MacOS/Julia",
is wrong, so the right path is :
"julia": "/Applications/Julia-0.4.0-dev-8a49356af7.app/Contents/Resources/julia/bin/julia",
Now julia is running inside sublime.
Hi all, I'm having Kernel Died on Sublime Text 3 (OSX 10.9.5) and Sublime-IJulia. My be something is wrong in my config file, please can someone help me ?
Some info: Darwin Kernel Version 13.4.0: Wed Mar 18 16:20:14 PDT 2015; root:xnu-2422.115.14~1/RELEASE_X86_64 x86_64
Julia Version 0.4.0-dev+5702 Commit 8a49356* (2015-06-30 12:53 UTC)
Platform Info: System: Darwin (x86_64-apple-darwin13.4.0) CPU: Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.3
Julia installed and running
Pkg.add("ZMQ") -> Ok julia> using ZMQ julia> ZMQ.zmq "/Users/msalese/.julia/v0.4/Homebrew/deps/usr/lib/libzmq.dylib" julia> ZMQ.version v"3.2.4"
Pkg.add("IJulia") -> compiled but error because ipython not installed
Sublime Text 3 Installed and running Sublime-IJulia Installed with this user settings: { "linux": { "zmq_shared_library": "~/.julia/v0.3/ZMQ/deps/usr/lib/libzmq.so", "commands": [ { "command_name": "default", "julia": "julia", "julia_args": "", "ijulia_kernel": "~/.julia/v0.3/IJulia/src/kernel.jl" } ] }, "osx": { "zmq_shared_library": "/Users/msalese/.julia/v0.4/Homebrew/deps/usr/lib/libzmq.dylib", "commands": [ { "command_name": "default", "julia": "/Applications/Julia-0.4.0-dev-8a49356af7.app/Contents/MacOS/Julia", "julia_args": "", "ijulia_kernel": "/Users/msalese/.julia/v0.4/IJulia/src/kernel.jl" } ] }, "windows": { "zmq_shared_library": "~/.julia/v0.3/ZMQ/deps/usr/lib/libzmq.dll", "commands": [ { "command_name": "default", "julia": "julia-readline.exe", "julia_args": "", "ijulia_kernel": "~/.julia/v0.3/IJulia/src/kernel.jl" } ] } }