8

How do I install a .zip file via the command line?

user247287
  • 81
  • 1
  • 1
  • 2

2 Answers2

10

You cannot install a zip file by itself. First unizip it (unzip yourzipfilename.zip) then navigate to the extracted folder (cd yourzipfilename), then install it's contents using command(s) that are appropriate to the content type.

Shan Valleru
  • 301
  • 2
  • 5
3

Just Double-click the .zip file -> Click Extract-> Select Destination Folder to extract. Its Done.

.zip is a compressed file not an installer.

Deepen
  • 4,049
  • 4
  • 22
  • 32