Last active
February 26, 2019 21:49
-
-
Save deeuu/eebbc515491f8befe2af96a2deabee12 to your computer and use it in GitHub Desktop.
Install julia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version = "1.1.0" | |
major, minor, patch = version.split('.') | |
wget f"https://julialang-s3.julialang.org/bin/linux/x64/{major}.{minor}/julia-{version}-linux-x86_64.tar.gz" | |
tar -xvf f"julia-{version}-linux-x86_64.tar.gz" | |
cp -r f"julia-{version}" /opt/ | |
ln -sf f"/opt/julia-{version}/bin/julia" /usr/local/bin/julia | |
rm -r f"julia-{version}-linux-x86_64.tar.gz" f"julia-{version}" | |
echo "Done: Type 'julia'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment