Last active
May 19, 2019 06:36
-
-
Save techgaun/2792bee5e42840c65f2ff36cfd436f03 to your computer and use it in GitHub Desktop.
Revisions
-
techgaun revised this gist
Jan 6, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -23,4 +23,6 @@ extract Precompiled.zip echo "export PATH=\$PATH:/opt/elixir/bin" > /etc/profile.d/elixir.sh chmod +x /etc/profile.d/elixir.sh source /etc/profile.d/elixir.sh # or add to ~/.bashrc ``` -
techgaun revised this gist
Jan 6, 2017 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ This has been tested on Raspbian ### Install Erlang 19.2 ```shell apt-get install -y libssl-dev ncurses-dev wget http://www.erlang.org/download/otp_src_19.2.tar.gz @@ -9,4 +11,16 @@ cd otp_src_19.2 ./configure make make install ``` ### Install Elixir 1.4.0 ```shell cd /opt wget "https://github.com/elixir-lang/elixir/releases/download/v1.4.0/Precompiled.zip" mkdir elixir && mv Precompiled.zip elixir/ && cd elixir extract Precompiled.zip echo "export PATH=\$PATH:/opt/elixir/bin" > /etc/profile.d/elixir.sh chmod +x /etc/profile.d/elixir.sh source /etc/profile.d/elixir.sh ``` -
techgaun created this gist
Jan 6, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ This has been tested on Raspbian ```shell apt-get install -y libssl-dev ncurses-dev wget http://www.erlang.org/download/otp_src_19.2.tar.gz wget -q -O - https://raw.githubusercontent.com/techgaun/extract/master/extract >> ~/.bashrc # I already had [this](https://github.com/techgaun/extract) extract otp_src_19.2.tar.gz cd otp_src_19.2 ./configure make make install ```