Last active
August 29, 2015 14:23
-
-
Save GallagherCommaJack/87af3b00f7f2e6069457 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
| # Installs agda into a folder in your home directory with sensible organization | |
| # First, make an agda folder in the home dir | |
| mkdir $HOME/agda | |
| # Next, clone the repo | |
| cd $HOME/agda | |
| git clone https://github.com/agda/agda.git repo | |
| cd repo | |
| cabal sandbox init | |
| cabal install | |
| ln -s $HOME/agda/repo/.cabal-sandbox/bin $HOME/agda/agdabin | |
| cd .. | |
| git clone https://github.com/agda/agda-stdlib.git #now you have a stdlib too | |
| ln -s $HOME/agda/agda-stdlib/src $HOME/agda/agdalib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment