Last active
December 22, 2015 21:09
-
-
Save jmpinit/6530994 to your computer and use it in GitHub Desktop.
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
# download & build Julia | |
cd /path/to/where/you/want/julia/to/be | |
git clone git://github.com/JuliaLang/julia.git | |
cd julia | |
make # ...wait 20 hours (or have a faster computer than I) | |
# install prerequisites for IJulia | |
sudo apt-get install pip | |
sudo pip install ipython | |
sudo pip install jinja2 tornado pyzmq | |
# install IJulia | |
julia | |
# clarifier: these commands are being run inside of Julia | |
run(`git config --global url."https://".insteadOf git://`) | |
Pkg2.update() | |
Pkg2.add("GnuTLS") | |
Pkg2.add("IJulia") | |
exit() | |
# run IJulia in browser window | |
ipython notebook --profile=julia |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment