Software⏱️ 3 min read📅 2026-06-15

How to Fix: error when install google chrome on ubuntu

Error installing Google Chrome on Ubuntu, Not implemented reached in virtual void views::DesktopWindowTreeHostX11::InitModalType.

Quick Answer: Try updating the Xorg package and then install Google Chrome using the official repository.

The error '[3880:3880:1012/130454:ERROR:desktop_window_tree_host_x11.cc(904)] Not implemented reached in virtual void views::DesktopWindowTreeHostX11::InitModalType(ui::ModalType)' occurs when attempting to install Google Chrome on Ubuntu. This issue affects users who have tried to install the browser using the provided instructions, which are intended for Selenium WebDriver.

This error can be frustrating as it prevents the user from accessing Google Chrome on their system. However, there is a solution available that can help resolve this problem.

⚠️ Common Causes

  • The primary cause of this error is related to the missing or incorrect installation of the libx11 and libglib2.0 libraries, which are required for the X11 windowing system. This can happen when the user follows the provided instructions without ensuring that these dependencies are met.
  • An alternative reason could be a mismatch between the version of libx11 installed on the system and the version required by Google Chrome.

🚀 How to Resolve This Issue

Installing Required Libraries

  1. Step 1: Update the package list to ensure it is up-to-date: `sudo apt update`
  2. Step 2: Install the required libraries using the following command: `sudo apt install libx11-dev libglib2.0-dev`
  3. Step 3: Verify that the dependencies have been installed correctly by checking their versions: `dpkg -l libx11* libglib2.0*`

Using a PPA for Google Chrome

  1. Step 1: Add the WebUp repository, which provides pre-compiled binaries for Google Chrome on Ubuntu: `sudo add-apt-repository 'deb http://webup.github.io/ubuntu/ google-chrome-stable'`
  2. Step 2: Update the package list to reflect the changes: `sudo apt update`

💡 Conclusion

To resolve the error when installing Google Chrome on Ubuntu, it is recommended to try the primary fix method of installing the required libraries. If this does not work, an alternative solution can be attempted by using a PPA for Google Chrome. By following these steps, users should be able to successfully install and use Google Chrome on their system.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions