Answers for "How to Install Julia on Ubuntu"

3

julia install linux

# How does the last version Julia install in Ubuntu 16.04 or above? 
# Wget Magic
# Copy and paste on your favorite linux console :)
cd ~/Downloads && wget -q -O- https://julialang.org/downloads/ | grep -Po '(?<=href=")[^"]*' | grep https://julialang-s3.julialang.org/bin/linux/x64/ | head -1 | xargs wget -O julia-x86_64.tar.gz && mkdir julia-x86_64 && tar -xvzf julia-x86_64.tar.gz -C julia-x86_64 --strip-components 1 && sudo cp -r julia-x86_64 /opt/ && sudo ln -s /opt/julia-x86_64/bin/julia /usr/local/bin/julia && julia
Posted by: Guest on June-06-2020
1

How to Install Julia on Ubuntu

sudo apt-get update -y
sudo apt-get install -y julia

julia
Posted by: Guest on September-25-2020

Code answers related to "How to Install Julia on Ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language