Last active
January 25, 2021 15:38
-
-
Save afahitech/2dd5ef4b3563f7a643521e30a0c37d96 to your computer and use it in GitHub Desktop.
Ruby Install Script
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
| #!/bin/sh | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: [email protected] | |
| =========================================================== | |
| sudo apt-get install unzip | |
| sudo wget https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.0.zip | |
| sudo unzip ruby-2.4.0.zip | |
| cd ruby-2.4.0 | |
| sudo ./configure | |
| sudo make | |
| sudo make test | |
| sudo make install | |
| echo "Ruby Installed Succesfully" | |
| ruby -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment