Skip to content

Instantly share code, notes, and snippets.

@HammoTime
Created July 19, 2020 04:02
Show Gist options
  • Save HammoTime/0eb544f93cacc832fb1e9e38f855193f to your computer and use it in GitHub Desktop.
Save HammoTime/0eb544f93cacc832fb1e9e38f855193f to your computer and use it in GitHub Desktop.
# Ubuntu
sudo apt-get install ruby-full build-essential zlib1g-dev
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# Fedora
sudo dnf install ruby ruby-devel @development-tools
# Debian
sudo apt-get install ruby-full build-essential
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment