Last active
February 25, 2020 11:43
-
-
Save adriantorrie/a13a866fd9f5f47aaf85 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 - Install The Julia Language (julia-lang)
This file contains 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
sudo add-apt-repository ppa:staticfloat/juliareleases | |
sudo apt-get update | |
sudo apt-cache show julia | |
sudo apt-get install julia julia-doc -y | |
julia -E 'Pkg.update()' | |
julia |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As of Julia 1.0, you will need to do
julia -e 'using Pkg; Pkg.update()"
.