How can I unzip the file that I downloaded using wget on linux

I have an api.zip file that I tried to unzip using the method below, as well as other similar methods.

admin@raspberrypi:/home$ unzip siteandapi.zip
bash: unzip: command not found

The operating system I use is a Linux image that runs on raspberries pi. I tried soloutions with gooogle, but the command was not found.

Do I have to have some kind of addon to be able to unpack or is it native to os?

+4
source share
1 answer

You need to install unzip. I assume you are using Raspbian as recommended, so exit:

sudo apt-get install unzip

and you are set up.

+10
source

Source: https://habr.com/ru/post/1530077/


All Articles