forked from quinnj/Sublime-IJulia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSublime-IJulia.sublime-settings
More file actions
68 lines (64 loc) · 2.33 KB
/
Sublime-IJulia.sublime-settings
File metadata and controls
68 lines (64 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// "command_name" gives you the chance to name different commands
// that will be displayed when opening a new console view.
// e.g. " -p 4" could be used for a command that starts julia -p 4
// "julia" refers to the absolute path of your julia executable.
// By default, it is assumed that your julia is in your system PATH.
// To launch a specific julia executable or if your julia is NOT in your
// system PATH, modify your platform's value string below with your
// julia's absolute path.
// e.g. "unix": "/home/username/julia/usr/bin/julia-release-readline"
// "ijulia_kernel" refers to the IJulia backend file that starts up
// the backend. This should not have to be changed at all.
// "zmq_shared_library" refers to the absolute path of the ZMQ
// shared library file. This file is automatically downloaded/built
// with the installation of the IJulia package from within julia.
// The file is located in a standard location on windows and linux (usually)
// but is different on OSX through the homebrew installation.
// The name of the file to locate is "libzmq.dylib" on OSX
// "libzmq.so" or "libzmq.so.3" on linux
// additional commands can be added by copying
/*
,{
"command_name": "default",
"julia": "julia",
"ijulia_kernel": "~/.julia/v0.3/IJulia/src/kernel.jl"
}
*/
// Note the comma before the 1st curly brace. This can be pasted
// after the default command in your platform below to provide
// different julia commands
{
"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": "/usr/local/Cellar/zeromq/3.2.4/lib/libzmq.dylib",
"commands": [
{
"command_name": "default",
"julia": "julia",
"julia_args": "",
"ijulia_kernel": "~/.julia/v0.3/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"
}
]
}
}