claw-config command not found

In this troubleshooting guide we learn how to fix claw-config command not found error message

Introduction

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

claw-config: command not found

or when using sudo you get the following error message

sudo: claw-config: command not found

Solutions to claw-config: command not found

How To Fix claw-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu claw-config is provided by libclaw-dev package.

libclaw-dev is:

Claw is a C++ Library Absolutely Wonderful bringing various nice classes and tools to C++ developers.

This library tries to be standard compliant and as portable as possible.

Claw provides:

  • tweener classes for easy interpolation,
  • advanced data structures: automaton, AVL binary search tree, graph, tree, ordered set, trie, maps with multiple types as keys,
  • geometric tools (2D): box/rectangle, point, line, vector,
  • image manipulation, reading and writing bitmap, jpeg, targa, png, pcx, xpm files
  • network tools: use sockets like any standard stream,
  • text algorithms,
  • min-max/alpha-beta algorithms,
  • developer tools: generic singleton, smart pointers, meta-programming concepts, buffered streams,
  • easy read of conf/ini files, easy access to environment variables,
  • manipulation of dynamic libraries,
  • and a lot more…

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

sudo apt-get -y install libclaw-dev

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

You can also use apt command to install libclaw-dev.

sudo apt -y install libclaw-dev

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

sudo aptitude install libclaw-dev

Summary

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