How to install Chromium .zip file?

20,277

Solution 1

A .zip file is an archive, so you can't install it, but can unzip or extract it - right click, select 'Extract here'. Call it installation if you like, but that's pretty much it. If you prefer the terminal way, then:

unzip chrome-linux.zip -d /destination_dir

To run it cd to the installation directory, and then run ./chrome

Needless to say, I'd strongly discourage using any unofficial version of Chrome. It could be unsafe, and your best bet is to get the real thing instead.

Solution 2

I could not find a zipped version of chrome to test this, but my guess is that you need to put the chrome-linux directory somewhere like /opt, and then set up a lanucher to point at /opt/chrome-linux/chrome. If you want to be able to execute chrome at any time from the command line, you might also put the chrome-linux directory in your path. Just put

export PATH=$PATH:/opt/chrome-linux

at the end of your .bashrc file in your home directory.

That said, if all you're wanting to do is install the stable version of chrome, then you probably want to go to http://www.google.com/chrome and download the .deb file instead.

Share:
20,277

Related videos on Youtube

jaorizabal
Author by

jaorizabal

Prefer to use Ubuntu 12.04, made the switch from Win 7 to Ubuntu and loving it.

Updated on September 18, 2022

Comments

  • jaorizabal
    jaorizabal almost 2 years

    I have the zip file but I don't know to install it from a .zip file. Here are the contents of the extracted chrome-linux.zip file: inside the folder

    • jaorizabal
      jaorizabal over 12 years
      I want to do it with the .zip
  • jaorizabal
    jaorizabal over 12 years
  • mikewhatever
    mikewhatever almost 11 years
    @Radu Radeanu The zip file in the question above is named chrome-linux.zip.
  • Radu Rădeanu
    Radu Rădeanu almost 11 years
    In the title is chromium.zip. Also, as you can verify here, the downloadable file is chromium.zip. The ditectory inside of this archive is chrome-linux.
  • mikewhatever
    mikewhatever almost 11 years
    @RaduRădeanu I don't want to be nitpicking too much here, but the title has "Chromium .zip file" in it, which is a noun phrase. Your link got me chrome-linux.zip, exactly as in the original question.