- How to install Google Chrome
- 8 Answers 8
- Video Demonstration
- Везде как дома с Chrome
- Инструменты Google прямо в браузере
- Управление настройками безопасности в интернете
- Эффективные и простые инструменты для работы в браузере
- Полезные советы по работе с Chrome
- Ещё больше инструментов и ресурсов
- Для организаций
- Для разработчиков
- Для участников тестирования
- Для первооткрывателей
- Установите браузер от Google
- Следите за нашими новостями
- Скачайте Chrome для Windows
- Скачайте Chrome для macOS
- Скачайте Chrome для Linux
- Скачайте Chrome для iOS
How to install Google Chrome
Just install Chromium, the open-source (FLOSS) counterpart to Chrome. Basically Google develops Chromium, adds some proprietary features (and likely tracking features) to it and distributes it as «Chrome». So either install Chromium from the software center or just sudo apt-get install chromium . I think that’s way easier to install! See also: What’s the difference between Chrome and Chromium?
Update: In 2020, the Chromium deb was replaced by a Chromium snap. A Chromium deb still exists, but it’s not a browser — it just installs the Snap. So most of the deb-related Chromium answers below are still valid. This change had NO effect on Chrome, which is still distributed as a deb from Google.
8 Answers 8
google-chrome-stable is available on a 3rd Party Repository: Google Chrome (for Stable).
Now that apt-key add is deprecated use this:
wget https://dl-ssl.google.com/linux/linux_signing_key.pub -O /tmp/google.pub
gpg --no-default-keyring --keyring /etc/apt/keyrings/google-chrome.gpg --import /tmp/google.pub
echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update sudo apt-get install google-chrome-stable
Follow the instruction for installation with apt-key add :
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update sudo apt-get install google-chrome-stable
It appears that the package from Google adds the Apt source file now, but named «google-chrome.list». Attempting to do an apt-get update will complain about duplicates. If you rename to match, the issue doesn’t occur.
@Pandya 3 years old but still a good instruction set! Google also provides an https endpoint for downloading. Probably this could be an update to this answer.
Video Demonstration
Click Download and a small window will pop up with some download options.
We want the «.deb» for Ubuntu. Make sure this box is checked.
Note: Google no longer provides 32-bit versions for Linux — you are only able to get 64-bit versions for Linux as of at least February 2016
It will give you the option to «Open with. » or «Save File». The default option for «Open with. » is to open via «Software Install». Select this option.
Give your PC a few moments and the ubuntu software center should open up with the .deb file you have downloaded ready to install. (I already have chrome installed) Click the install button and you will be prompted for your password to start the installation. This should take no more that 2mins to install.
Note: Chrome will also be updated through the normal Ubuntu update process so you can expect to grab the latest version when Ubuntu updates.
its adds the Google Chrome PPA when you install the package so from then on you get updates as they are released.
This method used to work fine for Ubuntu 14.04. I recently updated to Ubuntu 16.04 and I am not able to install google chrome. When I press the install button in software center, nothing happens.
Or if you want the actual Google Chrome, open a terminal and follow:
cd /tmp wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb
The 32-bit version is no longer available.
If you encounter any errors simply use
To run it from terminal use google-chrome or hit the super key and search Google or Chrome
This no longer works. For one, i386 versions are no longer available. Second, the download links on Google’s site are now broken.
The URL to the .deb file has changed, and is now: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
This is the best and simplest answer from the command line, without needing to use another browser to download. Worked perfectly in 18.04, without needing any additional dependencies.
I got an error when trying to run, [20264:20264:0201/211304.449159:ERROR:zygote_host_impl_linux.cc(89)] Running as root without —no-sandbox is not supported. See https://crbug.com/638180.
Google Chrome is different from Chromium.
Chromium can be found in the Ubuntu Software Centre. To download Google Chrome however:
- Goto: https://www.google.com/intl/en-CA/chrome/browser/
- Click Download Chrome
- Choose either 32 bit .deb (for 32bit Ubuntu) or 64 bit .deb (for 64bit Ubuntu)
- Click Accept and Install
- Download .deb file to a folder (Downloads is the default folder)
- Open up your Downloads folder.
- Double-click the .deb file you just downloaded.
- This should launch Ubuntu Software Centre.
- When it prompts you to whether you wish to install Chrome, just say yes.
- Input Password when asked to install.
When installing the debian package, if you have errors of the sort:
packages have unmet dependencies
The following worked for me:
The above will install the packages that were not installed but are needed for the debian package.
Now, you should be able to install the debian package via:
You can try saving the below script into a file and running it:
if [[ $(getconf LONG_BIT) = "64" ]] then echo "64bit Detected" && echo "Installing Google Chrome" && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo dpkg -i google-chrome-stable_current_amd64.deb && rm -f google-chrome-stable_current_amd64.deb else echo "32bit Detected" && echo "Installing Google Chrome" && wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb && sudo dpkg -i google-chrome-stable_current_i386.deb && rm -f google-chrome-stable_current_i386.deb fi
It will automatically detect your architecture and install the proper version of Google Chrome for your system.
Again, this is unnecessarily complicated for the everyday user to install Google Chrome with. It’s just making things harder than they need to be.
And yet if it was hosted somewhere and he gave a one line Curl command, then it would be exactly how lots of people work.
Hello people of the Ubuntu Universe, I wrote a c++ program for installing google chrome 64 bit, Pandya’s answer is very similiar. I usually write programs to handle anything, that I think I might have to do again in the future! Consequently installing google-chrome is something I’ve done many times.
If you do not already have build-essential installed as dependency, or c++ (g++) development you must install it first:
:~$ sudo apt-get install build-essential -y
Next copy the following program from this post into gedit and save it as googGt.cpp (change your tab width to 4):
//************************************************************************ // This googGt.cpp is created to install the google-chrome web browser // on Ubuntu 14.04 lts 64 bit. // author@GWade //************************************************************************ #include #include #include #include #include using namespace std; void PrntGoogPpa(ofstream& googPpa); void PrntGoogGtr(ofstream& googGtr); void PrntGoogLst(ofstream& gogLst); int main() < cout void PrntGoogPpa(ofstream& googPpa) < googPpa > /etc/apt/sources.list.d/google.list\n\n$UPD\n\nexit" void PrntGoogGtr(ofstream& googGtr) < googGtr << "#! /bin/bash\n\nAPGTN=\"apt-get install\"" << endl; googGtr << "APUPD=\"apt-get update\"\nUPD=\"updatedb\"\n" << endl; googGtr << "$APUPD\n\n$APGTN google-chrome-stable -y\n" << endl; googGtr << "$UPD\n\nexit" void PrntGoogLst(ofstream& googLst) < googLstIts nothing spectacular just some function abstraction. Its pretty easy to follow. Once you've copied and saved the program compile from command line:
This create an a.out in the working directory. Next gain root privledges and execute the program.
Executing the newly created binary:
The process is pretty straight forward first add the google PPA, then it updates the software sources, then it installs google-chrome, and last but not least it comments out the google-chrome.list url addresses so it doesn't update the 32 bit version as well as 64 bit on subsequent apt-get updates. You will now have the scripts 1) the script that adds the googPpa.sh and 2) the script that installs google-chrome (googGt.sh).
Везде как дома с Chrome
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Это устройство не будет получать обновления, так как Google Chrome не поддерживает установленную на нем операционную систему.
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Разрешить автоматическую отправку статистики использования и отчетов о сбоях, чтобы помочь улучшить Google Chrome. Подробнее…
Инструменты Google прямо в браузере
Используя приложения Google, такие как Gmail, Google Pay и Google Ассистент, встроенные прямо в Chrome, вы сможете работать эффективнее.
Встроенные функции безопасности
Управление настройками безопасности в интернете
В Chrome есть надежные средства для защиты вашей конфиденциальности и личных данных в интернете. Кроме того, вы можете сами задать нужные вам настройки конфиденциальности.
Полезные функции, встроенные прямо в Chrome
Эффективные и простые инструменты для работы в браузере
Наши полезные функции (например, проверка паролей, тёмная тема, адресная строка Google и многие другие) помогут вам работать в интернете эффективнее и безопаснее.
Советы по работе с браузером
Полезные советы по работе с Chrome
Синхронизируйте данные Chrome на разных устройствах, используйте сочетания клавиш, управляйте вкладками и не только. Эти советы помогут использовать браузер ещё эффективнее.
Ещё больше инструментов и ресурсов
Для организаций
Автоматическая установка обновлений и интуитивно понятные правила позволяют надежно защищать личную информацию и данные пользователей.
Для разработчиков
Создавайте современные сайты с Chrome для разработчиков.
Для участников тестирования
Бета-версия Chrome: пробуйте новые функции Chrome до выпуска основной версии.
Для первооткрывателей
Загляните в будущее интернет-технологий с версией Chrome Canary, которая обновляется каждый день.
Установите браузер от Google
Следите за нашими новостями
Закрыть
Скачайте Chrome для Windows
Для 32-разрядной версии Windows 10
Для 64-разрядной версии Windows 10 или 11
Для 32-разрядной версии Windows 8.1/8/7
Для 64-разрядной версии Windows 8.1/8/7
Скачайте Chrome для macOS
Для macOS 10.13 или более поздняя версия.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Google Chrome больше не будет обновляться на этом компьютере, так как поддержка macOS 10.6 – 10.12 прекращена.
Скачайте Chrome для Linux
Выберите пакет для скачивания:
Not Debian/Ubuntu or Fedora/openSUSE? There may be a community-supported version for your distribution here.
Скачайте Chrome для iOS