logo

How to Check Version and System Information in Julia REPL 📂Julia

How to Check Version and System Information in Julia REPL

Code

In Command Prompt (cmd)

You can verify this with the following code.

C:\Users\JGH>julia -v
julia version 1.11.3

C:\Users\JGH>julia -version
julia version 1.11.3

C:\Users\JGH>julia -e "println(VERSION)"
1.11.3

In REPL

By typing VERSION in uppercase, you can check the version. By entering the function versioninfo(), you can get more detailed information, including the Julia version, OS, hardware, the number of threads, and more.

julia> VERSION
v"1.11.3"

julia> versioninfo()
Julia Version 1.11.3
Commit d63adeda50 (2025-01-21 19:42 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: 32 × Intel(R) Core(TM) i9-14900K
  WORD_SIZE: 64
  LLVM: libLLVM-16.0.6 (ORCJIT, alderlake)
Threads: 32 default, 0 interactive, 16 GC (on 32 virtual cores)
Environment:
  JULIA_NUM_THREADS = 32
  JULIA_EDITOR = code
  JULIA_VSCODE_REPL = 1

Environment

  • OS: Windows 11
  • Version: Julia 1.11.3