I'm trying to get the Julia version from a python script.
C:\Users> julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.0.3 (2018-12-18)
_/ |\__'_|_|_|\__'_| |
|__/ |
julia> VERSION
v"1.0.3"
julia> exit()
C:\Users>
This is the way I do it in CMD.
Looking for a way to access this version value using python.
When using os.system('julia')
it never exits this stage because I guess it is waiting for a command within this Julia environment.