当我运行时出现此错误
\curl -L https://get.rvm.io | bash -s stable:
Command 'bash' is available in '/bin/bash'
The command could not be located because '/bin' is not included in the PATH environment variable.
bash: command not found
curl: (23) Failed writing body (0 != 15640)
有人知道怎么修这个东西吗?
答案1
您的路径中缺少/bin:
(位置bash
)。解决该问题的信息位于这篇相关文章
答案2
您的 $PATH 存在一些问题。为什么两次提到 /usr/bin。需要先修复它。本质上 /usr/bin 应该在路径中。
我的路径条目是
echo $PATH
/opt/anaconda2/bin:/opt/anaconda2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/opt/gradle/bin
注意:最近我安装了 anaconda,因此它位于其他默认值的前面,我应该纠正它。
如果你没有安装 curl,请尝试安装它
sudo apt-get install curl