Skip to content

Instantly share code, notes, and snippets.

@tesths
Last active November 28, 2019 08:33
Show Gist options
  • Save tesths/2bc63d2d833c3c83d6ac1ff5b2f05252 to your computer and use it in GitHub Desktop.
Save tesths/2bc63d2d833c3c83d6ac1ff5b2f05252 to your computer and use it in GitHub Desktop.
rvm
#fork from https://github.com/huacnlee/init.d
apt-get -y install update
echo "Install RVM"
echo "---------------------------------------------------------------------------"
apt-get -y install nodejs
command gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
command curl -sSL https://get.rvm.io | bash -s stable
command source /etc/profile.d/rvm.sh
rvm requirements
rvm install 2.3.3
rvm use 2.3.3 --default
rvm -v
ruby -v
#gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
gem install bundler
bundle -v
#bundle config mirror.https://rubygems.org https://gems.ruby-china.org
gem install rails
echo "--------------------------- Install Successed -----------------------------"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment