Created
July 19, 2020 04:02
-
-
Save HammoTime/0eb544f93cacc832fb1e9e38f855193f to your computer and use it in GitHub Desktop.
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
# 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