Last active
August 29, 2015 14:07
-
-
Save tkelman/c8d993e876f07151ba48 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| # install julia release: ./install-julia.sh juliareleases | |
| # install julia nightly: ./install-julia.sh julianightlies | |
| # stop on error | |
| set -e | |
| # default to juliareleases | |
| if [ $# -ge 1 ]; then | |
| JULIAVERSION=$1 | |
| elif [ -z "$JULIAVERSION" ]; then | |
| JULIAVERSION=juliareleases | |
| fi | |
| case $(uname) in | |
| Linux) | |
| # use PPA if add-apt-repository exists | |
| if [ -n "$(which add-apt-repository 2>/dev/null)" ]; then | |
| sudo add-apt-repository ppa:staticfloat/julia-deps -y | |
| sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y | |
| sudo apt-get update -qq -y | |
| sudo apt-get install libpcre3-dev julia -y | |
| else # use generic binary | |
| if [ -e /usr/local/bin/julia ]; then | |
| echo "/usr/local/bin/julia already exists, exiting" | |
| exit 1 | |
| elif ! [ $(uname -m) = "x86_64" ]; then | |
| echo "Only have generic Julia binaries for x86_64 at this time, exiting" | |
| exit 1 | |
| elif ! [ "$JULIAVERSION" = "julianightlies" ]; then | |
| echo "Only have generic Julia binaries for nightlies at this time, exiting" | |
| exit 1 | |
| fi | |
| curl -L "http://status.julialang.org/download/Linux Tarball" | tar -xz | |
| sudo ln -s $PWD/julia-*/bin/julia /usr/local/bin/julia | |
| fi | |
| ;; | |
| Darwin) | |
| if [ -e /usr/local/bin/julia ]; then | |
| echo "/usr/local/bin/julia already exists, exiting" | |
| exit 1 | |
| elif [ -e julia.dmg ]; then | |
| echo "julia.dmg already exists, exiting" | |
| exit 1 | |
| elif [ -e ~/julia ]; then | |
| echo "~/julia already exists, exiting" | |
| exit 1 | |
| fi | |
| if [ "$JULIAVERSION" = "julianightlies" ]; then | |
| curl -Lo julia.dmg "http://status.julialang.org/download/osx10.7+" | |
| elif [ "$JULIAVERSION" = "juliareleases" ]; then | |
| curl -Lo julia.dmg "http://status.julialang.org/stable/osx10.7+" | |
| else | |
| echo "Unrecognized JULIAVERSION=$JULIAVERSION, exiting" | |
| exit 1 | |
| fi | |
| hdiutil mount julia.dmg | |
| cp -Ra /Volumes/Julia/*.app/Contents/Resources/julia ~ | |
| ln -s ~/julia/bin/julia /usr/local/bin/julia | |
| # TODO: clean up after self? | |
| ;; | |
| MINGW* | MSYS* | CYGWIN*) | |
| # TODO | |
| # for windows, use something like | |
| # 32 bit release: ./install-julia.sh stable/win32 | |
| # 64 bit nightly: ./install-julia.sh download/win64 | |
| exit 1 | |
| ;; | |
| *) | |
| echo "Sorry, don't know how to install Julia binaries on this platform" | |
| exit 1 | |
| ;; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment