문제

With Nitrous.io the documentation states that other Ruby version managers may be used instead of RVM.

However, sudo is needed for installing rbenv

Is RVM currently the only option on nitrous.io?

도움이 되었습니까?

해결책

If you do not wish to use RVM which is pre-installed then you can install rbenv. Run the following commands within your Nitrous.IO console:

$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
$ echo 'eval "$(rbenv init -)"' >> ~/.bashrc
$ git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
$ source ~/.bashrc

These steps can be found within the Octopress guide which utilizes rbenv on Nitrous.IO.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top