web-dev-qa-db-ja.com

RVMは機能ではなく、「rvmuse ...」でルビーを選択しても機能しません

私はインストールしようとしています ここで説明されている談話 しかしコマンド

# Use installed Ruby as default
rvm use 2.0.0 --default 

結果は次のようになります。

discourse@ubuntu:~$ rvm use 2.0.0 --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 a example.

という事は承知しています

For RVM to work properly, you have to set the 'Run command as login Shell' checkbox on the Title and Command tab inside of gnome-terminal's Settings page.

ここで説明されているように しかし、sshを介してubuntuサーバーにインストールしているため、GUIにアクセスできません。 gnomeでその設定を変更するにはどうすればよいですか?



[〜#〜]編集[〜#〜]

mpapisの回答によるrvm get stable --auto-dotfilesを実行しましたが、それでも同じエラーが発生します。以下の出力を含めます。これは修正すべきことについて教えてくれますか?

discourse@ubuntu:/var/www/discourse$ rvm get stable --auto-dotfiles
Downloading https://get.rvm.io
Turning on auto dotfiles mode.
Downloading https://github.com/wayneeseguin/rvm/archive/stable.tar.gz

Upgrading the RVM installation in /home/discourse/.rvm/
    Removing rvm PATH line from /home/discourse/.profile /home/discourse/.bashrc /home/discourse/.zshrc.
    Adding rvm PATH line to /home/discourse/.profile /home/discourse/.bashrc /home/discourse/.zshrc.
    Removing rvm loading line from /home/discourse/.profile /home/discourse/.zlogin.
    Adding rvm loading line to /home/discourse/.bash_profile /home/discourse/.zlogin.
Upgrade of RVM in /home/discourse/.rvm/ is complete.

# discourse,
#
#   Thank you for using RVM!
#   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
#
# ~Wayne, Michal & team.

In case of problems: http://rvm.io/help and https://Twitter.com/rvm_io
       Help RVM 2.0: https://www.bountysource.com/fundraisers/489-rvm-2-0

Upgrade Notes:

  * No new notes to display.

RVM reloaded!
5
Zeynel

これは機能します。これらの行を〜/ .bashrcファイルに手動で追加してください

export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
4
user106202

実行:

rvm get stable --auto-dotfiles

すべての出力を必ずお読みください-rvmは、自動的に修正できない問題を修正できるという情報と警告を出力します

3
mpapis

'.profile'でコメントアウト(または削除)export PATH="$PATH:$HOME/.rvm/bin"すでに '.bashrc'ファイルにあり、移動するため[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"から '.bashrc'へ。

0
brannx