Julia installation and operation

(1) The installation of Julia is very simple. Download the exe on the official website https://julialang.org/ and install it directly.

(2) Operation method:

  (2.1) Click the Julia icon to open the so-called REPL interface (in fact, Julia's own command line), and use it like Matlab.
  Write picture description here
  (2.2) Use any text editor to create a source code file test.jl (note that the suffix is ​​.jl). Run the include command in the REPL, pay attention to the path level with \ instead of \. Special reminder: Do not include spaces in the path! Otherwise report an error!
  Write picture description here
  (2.3) Execute with Windows command line, provided that the path of julia.exe is added to the environment variable path first. Likewise, the path must not contain spaces!
  Write picture description here
(3) Finally, there is an IDE called JuliaPro, which can be used alone or integrated with VS Code. Never used, to be added.

Guess you like

Origin blog.csdn.net/iamzhtr/article/details/81872054