ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
–Version 65.0.3325.35 (Official Build) dev (64-bit)
そして私は ChromebooksとRaspberryPi用のVisualStudio 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 ~ $
回答
代替:
-
curl
-URLを転送します
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
コメント
回答
wget
は最近のバージョンの
には「ASUS-Chromebook-Flip-C302CA」にインストールされているものが含まれます。
curl
を使用できます代わりにファイルをダウンロードするコマンド。
コメント
- curlを使用してファイルをダウンロードする例はありますか?
- ividを確認してください
curl
の= “20695aa381″>
ページ。 curl -o download.rpm http://www.website.com/file.rpm
apt-get install wget
です。