bash: wget: 找不到命令

bash: wget: 找不到命令

我正在使用ASUS-Chromebook-Flip-C302CA/ Google Chrome OS-Version 65.0.3325.35 (Official Build) dev (64-bit)并且我正在尝试遵循适用于 Chromebook 和 Raspberry Pi 的 Visual Studio Code,但未能执行最后一步,并出现以下错误:

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 ~ $ 

答案1

选择:

  • curl- 传输 URL

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

答案2

wget已从最新版本中删除,其中ChromeOS包括“ASUS-Chromebook-Flip-C302CA”上安装的内容。

您可以使用该curl命令来下载文件。

相关内容