Sunday, May 17, 2020

2 Ways To Install Julia Programming Language On Ubuntu 20

Video Tutorial - https://youtu.be/39qQQajPoMM

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

“Julia is a high-level general-purpose dynamic programming language that was originally designed to address the needs of high-performance numerical analysis and computational science, without the typical need of separate compilation to be fast, also usable for client and server web use, low-level systems programming or as a specification language.”
Offcial Website -https://julialang.org/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install -y build-essential net-tools curl git software-properties-common neofetch

Method: 1
wget https://julialang-s3.julialang.org/bin/linux/x64/1.4/julia-1.4.1-linux-x86_64.tar.gz
tar -xvzf julia-1.4.1-linux-x86_64.tar.gz
cp -r julia-1.4.1 /opt/
ln -s /opt/julia-1.4.1/bin/julia /usr/local/bin/julia
julia


Method: 2
apt update ; apt install snapd -y
snap install julia --classic
julia

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment