Wget

bash:wget:找不到命令

  • March 9, 2019

我正在使用ASUS-Chromebook-Flip-C302CA/ Google Chrome OS-Version 65.0.3325.35 (Official Build) dev (64-bit)並且我正在嘗試遵循Visual Studio Code for Chromebooks 和 Raspberry Pi,但未能執行最後一步並出現以下錯誤:

chronos@localhost ~ $ . <( wget -O - https://code.headmelted.com/installers/chromebook.sh )
bash: wget: command not found
chronos@localhost ~ $ 

wget:

chronos@localhost ~ $ whereis wget
wget:
chronos@localhost ~ $ which wget
which: no wget in (/usr/local/bin:/usr/bin:/bin:/opt/bin)
chronos@localhost ~ $ find / -name wget >/dev/null 2>&1
chronos@localhost ~ $ 

選擇:

  • curl- 傳輸一個 URL

. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )

wget已從最新版本中刪除,ChromeOS其中包括“ASUS-Chromebook-Flip-C302CA”上安裝的內容。

您可以使用該curl命令來下載文件。

引用自:https://unix.stackexchange.com/questions/421867