How to install Googler on Ubuntu 22.04

Googler is an efficient and open-source command-line tool and a web browser used for google searches. It is used to run several commands, search the news and browse various videos. However, it depends on python. Therefore, the latest version of the python should be installed on the operating system before using the googler.

In this descriptive write-up, you will learn how to install the Googler on Ubuntu 22.04 using various methods.

  1. Install Googler on Ubuntu 22.04 using default repository of Ubuntu
  2. Install Googler on Ubuntu 22.04 using snap

How to Install Googler on Ubuntu 22.04

Googler is a free and an open-source command-line web browser. It is used for google search, and access to various URLs, news, and videos. As Ubuntu is a Linux-based distribution, therefore, it allows the installation of the googler application.

Here, we will explain the following two methods to install the Googler on Ubuntu 22.04.

Method 1: Install Googler on Ubuntu 22.04 using default repository of Ubuntu

The Googler packages have already been included in the official system repository. A user can install the Googler using Ubuntu’s official repository. Follow a step-by-step process to install the Googler from the system’s official repository.

Step 1: Update system repository

First, a user should update the system’s repository for the updated packages. For this purpose, use the following update command:

$ sudo apt update

The installed packages are updated successfully.

Step 2: Install Googler

To Install the googler via the system’s official repository, type and execute the following command in the terminal:

$ sudo apt install googler

The output showed that Googler is installed successfully.

How to use Googler on Ubuntu 22.04

After the successful installation of Googler on Ubuntu 22.04, a user can use the application for searching, etc. Here we will search Facebook using the following command in terminal:

$ googler facebook

The output showed that Facebook URLs were searched successfully.

How to remove Googler via the system’s repository

If you don’t want to use the Googler application, you can remove it from Ubuntu 22.04. The following command will remove the Googler as well as any configuration files associated with the googler.

$ sudo apt purge googler

Press the ‘Y’ key to continue the process. The output showed that Googler is removed successfully from Ubuntu 22.04.

Method 2: Install Googler on Ubuntu 22.04 using snap

A user can also install the Googler on Ubuntu 22.04 by downloading the snap of Googler. To install googler via snap-on Ubuntu 22.04, execute the following command:

$ sudo snap install googler

The output showed that Googler is installed successfully.

After the successful installation, you can verify or check the version of Googler. To verify the Googler version, execute the following command:

$ googler --version

The output showed that the installed version of Googler is 4.3.2

How to remove Googler via snap

If you don’t want to use the Googler application, you can remove it from Ubuntu 22.04. To remove the Googler from Ubuntu 22.04 via snap, type and run the following uninstallation command:

$ sudo snap remove googler

The Googler was removed successfully from Ubuntu 22.04.

Congratulations! Here it is, you have learned the installation methods of Googler on Ubuntu 22.04.

Conclusion

The Googler can be installed on Ubuntu 22.04 via Ubuntu’s official repository or via the snap store. Googler is an efficient and open-source command-line tool and a web browser used for google searches. This descriptive article has explained the detailed and step-by-step procedures to install the Googler on Ubuntu 22.04 through a terminal.