首页 > 代码库 > debian下安装rvm配置ruby环境
debian下安装rvm配置ruby环境
先安装rvm
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
安装必须的东西
rvm requirements
看看装哪个ruby
rvm list known
2.1.3貌似最新
rvm install ruby-2.1.3
设置默认
rvm use ruby-2.1.3 --default
如果看到
RVM is not a function, selecting rubies with ‘rvm use ...‘ will not work.You need to change your terminal emulator preferences to allow login shell.Sometimes it is required to use `/bin/bash --login` as the command.Please visit https://rvm.io/integration/gnome-terminal/ for an example.
则在.bashrc添加
source ~/.rvm/scripts/rvm
重启bash
安装rubygems,不过理论上应该已经包含在ruby里面了
rvm rubygems current
修改gem的源到淘宝
先看看原来的
gem sources -l
删除
gem sources --remove https://rubygems.org/gem sources -a http://ruby.taobao.org/
下面直接安装rails
gem install rails -V
补充个别人写的换源的工具
gem install chsource
用法:
rails new helloWorld --skip-bundlecd helloWorldchsource taobaobundle install
debian下安装rvm配置ruby环境
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。