Skip to content

Instantly share code, notes, and snippets.

@afahitech
Last active January 25, 2021 15:38
Show Gist options
  • Select an option

  • Save afahitech/2dd5ef4b3563f7a643521e30a0c37d96 to your computer and use it in GitHub Desktop.

Select an option

Save afahitech/2dd5ef4b3563f7a643521e30a0c37d96 to your computer and use it in GitHub Desktop.
Ruby Install Script
#!/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