Last active
May 30, 2024 00:30
-
-
Save techgaun/335ef6f6abb5a254c66d73ac6b390262 to your computer and use it in GitHub Desktop.
Revisions
-
techgaun revised this gist
Apr 23, 2019 . 1 changed file with 14 additions and 15 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 @@ -7,16 +7,16 @@ yum install ncurses-devel openssl-devel -y yum groupinstall "Development Tools" -y cd /tmp wget "http://erlang.org/download/otp_src_21.3.tar.gz" -O otp21.tar.gz tar xfz otp21.tar.gz cd otp_src_21.3/ ./configure make && make install cd /tmp wget "https://github.com/elixir-lang/elixir/archive/v1.8.1.tar.gz" tar xfz v1.8.1.tar.gz cd elixir-1.8.1/ export PATH="${PATH}:/usr/local/bin" make && make install @@ -30,21 +30,20 @@ mix local.rebar --force yum install ncurses-devel openssl-devel #### install erlang wget "http://erlang.org/download/otp_src_21.3.tar.gz" -O otp21.tar.gz tar xfz otp21.tar.gz cd otp_src_21.3/ ./configure make && make install #### install elixir cd .. wget "https://github.com/elixir-lang/elixir/archive/v1.8.1.tar.gz" tar xfz v1.8.1.tar.gz cd elixir-1.8.1/ export PATH="${PATH}:/usr/local/bin" make && make install #### install deps mix local.hex --force mix local.rebar --force -
techgaun revised this gist
Sep 26, 2017 . 1 changed file with 28 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,3 +1,31 @@ ### Script ```shell #!/bin/bash yum install ncurses-devel openssl-devel -y yum groupinstall "Development Tools" -y cd /tmp wget "http://erlang.org/download/otp_src_19.3.tar.gz" -O otp19.tar.gz tar xfz otp19.tar.gz cd otp_src_19.3/ ./configure make && make install cd /tmp wget "https://github.com/elixir-lang/elixir/archive/v1.4.4.tar.gz" tar xfz v1.4.4.tar.gz cd elixir-1.4.4/ export PATH="${PATH}:/usr/local/bin" make && make install mix local.hex --force mix local.rebar --force ``` ### Step-by-step Process #### pre-install yum install ncurses-devel openssl-devel -
techgaun revised this gist
May 24, 2017 . 1 changed file with 1 addition and 1 deletion.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 @@ -4,7 +4,7 @@ #### install erlang yum groupinstall "Development Tools" wget "http://erlang.org/download/otp_src_19.3.tar.gz" -O otp19.tar.gz tar xfz otp19.tar.gz cd otp_src_19.3/ ./configure make && make install -
techgaun renamed this gist
May 24, 2017 . 1 changed file with 5 additions and 5 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 @@ -3,17 +3,17 @@ #### install erlang yum groupinstall "Development Tools" wget "http://erlang.org/download/otp_src_19.3.tar.gz" -O otp19.tar.gz tar xvfz otp19.tar.gz cd otp_src_19.3/ ./configure make && make install #### install elixir cd .. wget "https://github.com/elixir-lang/elixir/archive/v1.4.4.tar.gz" tar xfz v1.4.4.tar.gz cd elixir-1.4.4/ export PATH="${PATH}:/usr/local/bin" make && make install -
techgaun revised this gist
Aug 1, 2016 . 1 changed file with 3 additions and 3 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 @@ -11,9 +11,9 @@ #### install elixir cd .. wget "https://github.com/elixir-lang/elixir/archive/v1.3.2.tar.gz" tar xfz v1.3.2.tar.gz cd elixir-1.3.2/ export PATH="${PATH}:/usr/local/bin" make && make install -
techgaun revised this gist
Jul 26, 2016 . 1 changed file with 3 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,3 +1,6 @@ #### pre-install yum install ncurses-devel openssl-devel #### install erlang yum groupinstall "Development Tools" wget "http://erlang.org/download/otp_src_19.0.tar.gz" -O otp19.tar.gz -
techgaun revised this gist
Jul 12, 2016 . 1 changed file with 17 additions and 17 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,19 +1,19 @@ #### install erlang yum groupinstall "Development Tools" wget "http://erlang.org/download/otp_src_19.0.tar.gz" -O otp19.tar.gz tar xvfz otp19.tar.gz cd otp_src_19.0/ ./configure make && make install #### install elixir cd .. wget "https://github.com/elixir-lang/elixir/archive/v1.3.1.tar.gz" tar xfz v1.3.1.tar.gz cd elixir-1.3.1/ export PATH="${PATH}:/usr/local/bin" make && make install #### install deps mix local.hex mix local.rebar -
techgaun created this gist
Jul 12, 2016 .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,19 @@ # install erlang yum groupinstall "Development Tools" wget "http://erlang.org/download/otp_src_19.0.tar.gz" -O otp19.tar.gz tar xvfz otp19.tar.gz cd otp_src_19.0/ ./configure make && make install # install elixir cd .. wget "https://github.com/elixir-lang/elixir/archive/v1.3.1.tar.gz" tar xfz v1.3.1.tar.gz cd elixir-1.3.1/ export PATH="${PATH}:/usr/local/bin" make && make install # install deps mix local.hex mix local.rebar