-
Notifications
You must be signed in to change notification settings - Fork 27
/
juliapro
49 lines (31 loc) · 951 Bytes
/
juliapro
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
You can run on notebooks directly by going to
juliabox.com
or download JuliaPro by going to
http://juliacomputing.com/products/
---
On MAC, notebooks are not yet pre-installed (this is coming soon)
If you wish to use notebooks you can try two methods
Method A: REPL Method
1. Open the REPL (LONG PATH)
/Applications/JuliaPro-0.5.0.4.app/Contents/Resources/julia/Contents/Resources/julia/bin/julia
2. Avoid interfering with downloads you may already have
ENV["PYTHON"]=""
ENV["JUPYTER"]=""
3.
Pkg.build("PyCall")
Pkg.build(“IJulia”)
<follow any instructions, probably ignore warnings>
4.
using IJulia
5.
notebook() or notebook(dir=".") (to open in your current directory)
METHOD B: JUNO Method
1. open JuliaPro
2a. In Console do
ENV["PYTHON"]=""
ENV["JUPYTER"]=""
Pkg.build("PyCall")
Pkg.build(“IJulia”)
<follow any instructions, probably ignore warnings, then do the following below>
using IJulia
notebook(detached=true)