Created
September 1, 2013 18:33
-
-
Save kachayev/6406334 to your computer and use it in GitHub Desktop.
Install/Run Elixir lang on Mac OS
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
| $ mkdir ~/ElixirLang | |
| $ cd ~/ElixirLang | |
| $ brew install kerl | |
| $ kerl build R16B01 r16b01 | |
| $ kerl install r16b01 ~/erlang/r16b01 | |
| $ . ~/erlang/r16b01/activate | |
| $ erl | |
| Erlang R16B01 (erts-5.10.2) [source] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] | |
| Eshell V5.10.2 (abort with ^G) | |
| 1> q(). | |
| ok | |
| $ brew install elixir | |
| $ iex | |
| Erlang R16B01 (erts-5.10.2) [source] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] | |
| Interactive Elixir (0.9.0) - press Ctrl+C to exit (type h() ENTER for help) | |
| iex(1)> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment