Created
June 21, 2013 22:57
-
-
Save benmarwick/5834945 to your computer and use it in GitHub Desktop.
install and build Julia in ubuntu
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
# 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