質問は非常に簡単です:
RVM Webサイトの指示に従うかのように、RVM(シングルユーザーインストール)をインストールできません。
$ curl -L https://get.rvm.io | bash -s stable
インストールスクリプトファイルの360行目(echoで始まる行)でアクセス許可拒否エラーが発生します:
# Perform the actual installation, first we obtain the source using whichever
# means was specified, if any. Defaults to head.
case "${version}" in
(head)
echo "${branch}" > "$rvm_path/RELEASE"
install_head ${branch:-master} || exit $?
;;
エラーメッセージは次のとおりです。
olivier @〜$ curl -L https://get.rvm.io | bash-s安定
bash:行360:/ usr / local / rvm / RELEASE:アクセスが拒否されました
上記のコマンドで「bash」の前に「sudo」を追加すると、正常に機能しますが、マルチユーザーインストールになります...