googler command not found

In this troubleshooting guide we learn how to fix googler command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

googler: command not found

or when using sudo you get the following error message

sudo: googler: command not found

Solutions to googler: command not found

How To Fix googler: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu googler is provided by googler package.

googler is:

Features:

  • Google Search, Google Site Search, Google News
  • Fast and clean (no ads, stray URLs or clutter), customisable color
  • Open result URLs (or the actual search) in browser
  • Navigate search result pages from omniprompt
  • Fetch n results in a go, start at the nth result
  • Disable automatic spelling correction and search exact keywords
  • Limit search by duration, country/domain specific search (default: .com), language preference
  • Supports Google search keywords like ‘filetype:mime’, ‘site:somesite.com’ etc.
  • Optionally open the first result directly in browser (as in “I’m Feeling Lucky”)
  • Non-stop searches: fire new searches at omniprompt without exiting
  • Proxy support
  • Man page with examples, shell completion scripts for Bash, Zsh and Fish

To fix this problem, we can install more using the command below.

sudo apt-get -y install googler

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install googler.

sudo apt -y install googler

Or if you have aptitude installed you can use the following command.

sudo aptitude install googler

Summary

In this tutorial we learn how to fix googler command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.