File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Step 1: Install Julia
38
38
39
39
Get the Julia installer from https://julialang.org/downloads/. See
40
40
also the `Platform Specific Instructions
41
- <https://julialang.org/downloads/platform.html > `_.
41
+ <https://julialang.org/downloads/platform> `_.
42
42
43
43
Your python installation must be able to call command line program
44
44
``julia ``. If your installer does not add the Julia binary directory to
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ Other variants of Python import syntax also work:
26
26
.. code-block :: pycon
27
27
28
28
>>> import julia.Base
29
- >>> from julia.Base import Enums # import a submodule
30
- >>> from julia.Base import sin # import a function from a module
29
+ >>> from julia.Base import Enums # import a submodule
30
+ >>> from julia.Base import sin, sind # import functions from a module
31
31
32
32
The global namespace of Julia’s interpreter can be accessed via a
33
33
special module ``julia.Main ``:
Original file line number Diff line number Diff line change 11
11
(dict (compiled_modules = "no" ), ["--compiled-modules=no" ]),
12
12
(dict (depwarn = "error" ), ["--depwarn=error" ]),
13
13
(dict (sysimage = "PATH" ), ["--sysimage=PATH" ]),
14
+ (dict (bindir = "PATH" ), ["--home=PATH" ]),
14
15
(dict (optimize = 3 ), ["--optimize=3" ]),
15
16
(dict (threads = 4 ), ["--threads=4" ]),
16
17
(dict (min_optlevel = 2 ), ["--min-optlevel=2" ]),
You can’t perform that action at this time.
0 commit comments