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 append to an array in JuliaLang?
- How to test code in JuliaLang?
- How to create a package in JuliaLang?
- How to round numbers in JuliaLang?
- How to create plots in JuliaLang?
- How to use addprocs in JuliaLang?
- How to use tuples in JuliaLang?
- How to use the JuliaLang PackageCompiler?
- How to use the JuliaLang package manager?
- How to work with linear algebra in JuliaLang?
See more codes...