Anurag Arwalkar
Anurag Arwalkar

Reputation: 725

sh: 39: unzip: not found while installing deno

I am getting this following error sh: 39: unzip: not found while installing Deno on windows Subsystem For Linux(WSL).

Upvotes: 2

Views: 2289

Answers (3)

Abhay singh
Abhay singh

Reputation: 39

All you have to do is simply install unzip by sudo apt-get install unzip.

Upvotes: 0

Makuza Mugabo verite
Makuza Mugabo verite

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

Anurag Arwalkar
Anurag Arwalkar

Reputation: 725

I have solved this issue by installing unzip on my Ubuntu by running sudo apt-get install unzip

Upvotes: 9

Related Questions