的bash -c 「$(捲曲-s https://install.prediction.io/install.sh)」亞馬遜的Linux捲曲
我運行上面的腳本並運行Linux的亞馬遜安裝預測IO EC2實例。沒有任何反應沒有錯誤有誰知道發生了什麼事?
的bash -c 「$(捲曲-s https://install.prediction.io/install.sh)」亞馬遜的Linux捲曲
我運行上面的腳本並運行Linux的亞馬遜安裝預測IO EC2實例。沒有任何反應沒有錯誤有誰知道發生了什麼事?
該命令以靜默模式下載文件$(curl -s https://install.prediction.io/install.sh)
,然後使用bash -c
運行該文件。 你應該運行在單獨的步驟的命令來檢查它是什麼在
curl -O https://install.prediction.io/install.sh
chmod +x install.sh
./install.sh
首先要檢查等等https://install.prediction.io/install.sh是否從亞馬遜EC2訪問。
curl -v https://install.prediction.io/install.sh
如果其工作,試試這個
curl -s https://install.prediction.io/install.sh | bash