bodrparse command not found

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

Introduction

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

bodrparse: command not found

or when using sudo you get the following error message

sudo: bodrparse: command not found

Solutions to bodrparse: command not found

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

In Ubuntu bodrparse is provided by avogadro-utils package.

avogadro-utils is:

Avogadro is a molecular graphics and modelling system targeted at small to medium molecules. It can visualize properties like molecular orbitals or electrostatic potentials and features an intuitive molecular builder.

This package provides avogadro utility programs: avobabel avocjsontocml bodrparse encodefile qube resdataparse

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

sudo apt-get -y install avogadro-utils

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

You can also use apt command to install avogadro-utils.

sudo apt -y install avogadro-utils

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

sudo aptitude install avogadro-utils

Summary

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