How To Install golang-github-blevesearch-bleve-dev on Kali Linux

In this tutorial we learn how to install golang-github-blevesearch-bleve-dev on Kali Linux. golang-github-blevesearch-bleve-dev is modern text indexing library for go

Introduction

In this tutorial we learn how to install golang-github-blevesearch-bleve-dev on Kali Linux.

What is golang-github-blevesearch-bleve-dev

golang-github-blevesearch-bleve-dev is:

Blevesearch is a library that provides full-text search and indexing for Go. It is designed to be fast, flexible, and easy to use.

Features:

  • Index any go data structure (including JSON)
  • Intelligent defaults backed up by powerful configuration
  • Supported field types:
    • Text
    • Numeric
    • Date
  • Supported query types:
    • Term, Phrase, Match, Match Phrase, Prefix
    • Conjunction, Disjunction, Boolean
    • Numeric Range, Date Range
    • Simple query syntax for human entry
  • tf-idf Scoring
  • Search result match highlighting
  • Supports Aggregating Facets:
    • Terms Facet
    • Numeric Range Facet
    • Date Range Facet

There are three methods to install golang-github-blevesearch-bleve-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install golang-github-blevesearch-bleve-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install golang-github-blevesearch-bleve-dev using apt-get by running the following command:

sudo apt-get -y install golang-github-blevesearch-bleve-dev

Install golang-github-blevesearch-bleve-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install golang-github-blevesearch-bleve-dev using apt by running the following command:

sudo apt -y install golang-github-blevesearch-bleve-dev

Install golang-github-blevesearch-bleve-dev Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install golang-github-blevesearch-bleve-dev using aptitude by running the following command:

sudo aptitude -y install golang-github-blevesearch-bleve-dev

How To Uninstall golang-github-blevesearch-bleve-dev on Kali Linux

To uninstall only the golang-github-blevesearch-bleve-dev package we can use the following command:

sudo apt-get remove golang-github-blevesearch-bleve-dev

Uninstall golang-github-blevesearch-bleve-dev And Its Dependencies

To uninstall golang-github-blevesearch-bleve-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove golang-github-blevesearch-bleve-dev

Remove golang-github-blevesearch-bleve-dev Configurations and Data

To remove golang-github-blevesearch-bleve-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge golang-github-blevesearch-bleve-dev

Remove golang-github-blevesearch-bleve-dev configuration, data, and all of its dependencies

We can use the following command to remove golang-github-blevesearch-bleve-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge golang-github-blevesearch-bleve-dev

Dependencies

golang-github-blevesearch-bleve-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install golang-github-blevesearch-bleve-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.