avctest command not found

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

Introduction

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

avctest: command not found

or when using sudo you get the following error message

sudo: avctest: command not found

Solutions to avctest: command not found

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

In Ubuntu avctest is provided by avce00 package.

avce00 is:

AVCE00 is a C library and group of tools that makes Arcinfo (binary) Vector Coverages appear as E00. It allows you to read and write binary coverages just as if they were E00 files.

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

sudo apt-get -y install avce00

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

You can also use apt command to install avce00.

sudo apt -y install avce00

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

sudo aptitude install avce00

Summary

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