Jeg bruker m ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
– Version 65.0.3325.35 (Official Build) dev (64-bit)
og jeg prøver å følge Visual Studio-kode for Chromebooks og Raspberry Pi ennå unnlater å utføre siste trinn med følgende feil:
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 ~ $
Svar
alternativ:
-
curl
– overfør en URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
Kommentarer
Svar
wget
er fjernet fra nylige versjoner av ChromeOS
som inkluderer hva som er installert på `ASUS-Chromebook-Flip-C302CA».
Du kan bruke curl
kommando om å laste ned filene i stedet.
Kommentarer
- Ethvert eksempel på nedlasting av filer ved hjelp av curl?
- Kontroller
man
side forcurl
. Du kan starte medcurl -o download.rpm http://www.website.com/file.rpm
apt-get install wget
.