ruby环境搭建记录

ruby 环境搭建

Author : Janloong Do_O

rvm 安装

导入安全公钥
curl -sSL https://rvm.io/mpapis.asc | sudo gpg2 --import -

安装稳定版本 定位在需要安装的目录下
curl -sSL https://get.rvm.io | sudo bash -s stable

etc/profile配置path路径

ruby安装

rvm install ruby --default

如果报错page404 需要更新list
需要先执行
rvm autolibs disable

参考ruby-china的推荐安装方式 传送门

echo "Install RVM"
echo "---------------------------------------------------------------------------"
command gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
command curl -L https://get.rvm.io | bash -s stable
if [ whoami = 'root']; then
command source /etc/profile.d/rvm.sh
else
command source ~/.rvm/scripts/rvm
fi

if [ MIRROR = '1' ]; then
echo "ruby_url=https://cache.ruby-china.org/pub/ruby" > ~/.rvm/user/db
fi

rvm requirements
rvm install 2.3.1 --disable-binary
rvm use 2.3.1 --default
rvm -v
ruby -v

if [ MIRROR = '1' ]; then
gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
fi

gem install bundler
bundle -v
echo "--------------------------- Install Successed -----------------------------"
发布了50 篇原创文章 · 获赞 2 · 访问量 2万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章