실행할 때 이 오류가 발생합니다.
\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
참고: 최근에 아나콘다를 설치했기 때문에 다른 기본값보다 앞에 있으므로 이를 수정해야 합니다.
또한 컬이 설치되어 있지 않은 경우 설치해보십시오.
sudo apt-get install curl