入力しruby
ているときは、まだ rvm ルビではなく、システム ルビにアクセスしています。
https://rvm.io//rvm/install/のすべての指示に従いましたか?
Linux を実行しているようです -- rvm インストール ドキュメントでこのセクションを見ましたか?
If you open a new shell and running:
$ type rvm | head -1
does not show "rvm is a function", RVM isn't being sourced correctly.
Ensure that RVM is sourced after any path settings as RVM and manipulates the path. If you don't do this, RVM may not work as expected.
If you are using GNOME on Red Hat, CentOS or Fedora, ensure that the Run command as login shell option is checked under the Title and Command tab in Profile Preferences. After changing this setting, you may need to exit your console session and start a new one before the changes take affect.
また、ファイルにrvm
いくつかの行を追加して.bashrc
、コンソール セッションを開くたびに自身をメモリにロードします。これがあなたの問題のようです。
.bashrc
たとえば、私のではrvm
、次を挿入しました。
export PATH=/opt/local/bin:/opt/local/sbin:/opt/local/lib/postgresql84/bin:$PATH
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session.
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
あなたの中で似たようなものはありますか?また、z-shell を使用している場合は、インストール ドキュメントに記載されている追加の手順を実行する必要がある場合があります。