Horje
julia install linux Code Example
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
Source: medium.com
How to Install Julia on Ubuntu
sudo apt-get update -y
sudo apt-get install -y julia

julia




Shell

Related
command for copying files in linux Code Example command for copying files in linux Code Example
google cloud set project id Code Example google cloud set project id Code Example
undo git rebase Code Example undo git rebase Code Example
How to create a file with a given size in Linux? Code Example How to create a file with a given size in Linux? Code Example
create text file with 64 bytes in ubuntu Code Example create text file with 64 bytes in ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11