julialangHow to install JuliaLang on Ubuntu?
- Download the Julia binary from the JuliaLang website.
- Unpack the tarball with
tar -xzf julia-<version>.tar.gz
- Move the Julia directory to the desired location with
mv julia-<version> /usr/local/julia
- Add the Julia binary to your PATH with
export PATH="$PATH:/usr/local/julia/bin"
- Test the installation with
julia --version
which should output the version of Julia installed.
More of Julialang
- How to test code in JuliaLang?
- How to append to an array in JuliaLang?
- How to use the println function in JuliaLang?
- How to sort in JuliaLang?
- How to use lambda functions in JuliaLang?
- How to work with matrices in JuliaLang?
- How to install JuliaLang?
- How to measure execution time in JuliaLang?
- How to use the range function in JuliaLang?
See more codes...