neon-config command not found

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

Introduction

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

neon-config: command not found

or when using sudo you get the following error message

sudo: neon-config: command not found

Solutions to neon-config: command not found

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

In Ubuntu neon-config is provided by libneon27-gnutls-dev package.

libneon27-gnutls-dev is:

This package contains the headers and the static library for libneon27-gnutls.

Neon provides lower-level interfaces to directly implement new HTTP methods, and higher-level interfaces so that you don’t have to worry about the lower-level stuff.

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

sudo apt-get -y install libneon27-gnutls-dev

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

You can also use apt command to install libneon27-gnutls-dev.

sudo apt -y install libneon27-gnutls-dev

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

sudo aptitude install libneon27-gnutls-dev

Summary

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