gpt4 book ai didi

installation - Rvm 安装中的问题,以二进制模式运行

转载 作者:行者123 更新时间:2023-12-04 04:55:20 25 4
gpt4 key购买 nike

我使用命令安装了 rvm,按照惯例应该将 rvm 作为函数返回

1) bash < <(curl -sk https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
2) echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
3) source .bash_profile
4) type rvm | head -1

should return ("rvm is a function") // and it returned, rails was perfectly fine yesterday.

昨天它运行得很好,但现在当我检查 rails 时。它说没有安装导轨。
   type rvm | head -1
returns "RVM is Hashed".

Here is something我从官方网站上得到的,但我不知道接下来我应该做什么。
所以问题是:

应该怎么做才能以函数模式而不是二进制模式安装 rvm?

最佳答案

一种可能的原因可能是无法从 .bash_profile 文件访问 RVM,因此请尝试使用 .bashrc 文件而不是 .bash_profile。

将以下命令复制并粘贴到 终端

echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bashrc
source ~/.bashrc

希望对你有效。为我工作干杯!

===== 编辑 =====

以下应该适用于所有情况:
curl -L https://get.rvm.io | bash -s stable
echo "source $HOME/.rvm/scripts/rvm" >> ~/.bash_profile
echo "source $HOME/.rvm/scripts/rvm" >> ~/.bashrc

关于installation - Rvm 安装中的问题,以二进制模式运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9578561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com