Skip to content

Instantly share code, notes, and snippets.

@benmarwick
Created June 21, 2013 22:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save benmarwick/5834945 to your computer and use it in GitHub Desktop.
Save benmarwick/5834945 to your computer and use it in GitHub Desktop.
install and build Julia in ubuntu
# In a terminal... make sure I get the master branch
git clone -b master git://github.com/JuliaLang/julia.git
# needed these on EC2
sudo apt-get update
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install gfortran
sudo apt-get install make
# change to directory and run make
cd julia
make
# wait a long time, then
export PATH="$(pwd):$PATH"
# start julia
julia
# to remove:
rm -r -f julia
sudo dpkg --remove julia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment