web-dev-qa-db-ja.com

bash:wget:コマンドが見つかりません

_ASUS-Chromebook-Flip-C302CA_/_Google Chrome OS_-Version 65.0.3325.35 (Official Build) dev (64-bit)を使用していて、 Chromebooksおよび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 ~ $ 
_
3
alexus

代替:

  • curl-URLを転送

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

5
alexus

wgetは、最近のバージョンのChromeOSから削除されました。これには、 `ASUS-Chromebook-Flip-C302CA 'にインストールされているものが含まれます。

代わりに、curlコマンドを使用してファイルをダウンロードできます。

3
Nasir Riley