| 
    LandauGinzburg
    
   | 
 
 sudo add-apt-repository ppa:staticfloat/juliareleases 
 sudo add-apt-repository ppa:staticfloat/julia-deps 
<https://julialang.org/downloads/oldreleases.html>
 #!/usr/bin/env bash 
 set -e 
 
 # Open new terminal. 
 SOURCE="clear && exec '/Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia'" 
 DIR= 
 if [[ "$(uname)" = "Darwin" ]] && [[ -z "$ON_NEW_TERMINAL" ]] && [[ -z "$NO_NEW_TERMINAL" ]] ; then 
 osascript -e "tell app \"Terminal\" to do script \"cd $DIR && export ON_NEW_TERMINAL=1 && $SOURCE\"" 
 exit 0 
 fi 
 
 # Get the directory path and move it. 
 while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done 
 DIR="$( cd -P "$( dirname "$SOURCE" )/" && pwd )" 
 cd "$DIR" 
Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and Alan Edelman `‘Julia: A Fast Dynamic Language for Technical Computing,’' arXiv:1209.5145 [cs.PL]
Jeff Bezanson, Alan Edelman, Stefan Karpinski, and Viral B. Shah `‘Julia: A Fresh Approach to Numerical Computing,’' arXiv:1411.1607 [cs.MS]