Skip to content

Instantly share code, notes, and snippets.

@tbeason
Created January 22, 2019 14:55
Show Gist options
  • Save tbeason/38ebc1d13ab71bab1a567578daca7c6f to your computer and use it in GitHub Desktop.
Save tbeason/38ebc1d13ab71bab1a567578daca7c6f to your computer and use it in GitHub Desktop.
I always forget how to update Julia
# first save new julia version to Downloads folder
# now unpack to proper spot
# I store my julia versions in /usr/local/julia
cd Downloads
sudo tar xvzf julia-1.1.0-linux-x86_64.tar.gz -C /usr/local/julia
# remove the old link, make the new one
sudo rm /usr/local/bin/julia
sudo ln -s /usr/local/julia/julia-1.1.0/bin/julia /usr/local/bin/julia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment