julialangHow to install JuliaLang?
JuliaLang can be installed on Windows, MacOS, and Linux.
- Download the JuliaLang installer from JuliaLang's website.
- Run the installer and follow the instructions.
- Once the installation is complete, open the JuliaLang REPL (Read-Evaluate-Print-Loop) by typing
julia
in the command line.
$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.4.2 (2020-05-23)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
- To check the version of JuliaLang, type
versioninfo()
in the REPL.
julia> versioninfo()
Julia Version 1.4.2
Commit 44fa15b150* (2020-05-23 23:17 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
- To learn more about JuliaLang, visit JuliaLang's website.
More of Julialang
- How to measure execution time in JuliaLang?
- How to use tuples in JuliaLang?
- How to work with rational numbers in JuliaLang?
- How to test code in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to use enums in JuliaLang?
- How to use channels in JuliaLang?
- How to sort in JuliaLang?
- How to get JuliaLang version?
- How to use regular expressions in JuliaLang?
See more codes...