openrefine command not found

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

Introduction

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

openrefine: command not found

or when using sudo you get the following error message

sudo: openrefine: command not found

Solutions to openrefine: command not found

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

In Ubuntu openrefine is provided by openrefine package.

openrefine is:

OpenRefine is a power tool for working with messy data. Use it to improve data consistency, link it to data registries like Wikidata, augment it with data from other sources, transform it into different formats for other tools to consume, and contribute it back to the original sources. OpenRefine is not a web service but a desktop app that runs on your own computer, so you can process sensitive data with privacy.

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

sudo apt-get -y install openrefine

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

You can also use apt command to install openrefine.

sudo apt -y install openrefine

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

sudo aptitude install openrefine

Summary

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