嘗試在 Ruby 上安裝 Rails 並在安裝過程中出現 bash 錯誤

嘗試在 Ruby 上安裝 Rails 並在安裝過程中出現 bash 錯誤

當我運行時出現此錯誤

\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

相關內容