Reputation: 725
I am getting this following error sh: 39: unzip: not found
while installing Deno on windows Subsystem For Linux(WSL).
Upvotes: 2
Views: 2289
Reputation: 39
All you have to do is simply install unzip by sudo apt-get install unzip
.
Upvotes: 0
Reputation: 308
I resolved this issue by doing
sudo apt-get install unzip -y
and was fixed
refer here https://github.com/denoland/deno_install#unzip-is-required
Upvotes: 2
Reputation: 725
I have solved this issue by installing unzip on my Ubuntu by running sudo apt-get install unzip
Upvotes: 9