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 use regular expressions in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to create a histogram in JuliaLang?
- How to use lambda functions in JuliaLang?
- How to use the JuliaLang package manager?
- How to append to an array in JuliaLang?
- How to reshape arrays in JuliaLang?
- How to parse JSON in JuliaLang?
- How to install JuliaLang?
- How to use assert in JuliaLang?
See more codes...