gdpc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gdpc: command not found
or when using sudo you get the following error message
sudo: gdpc: command not found
Solutions to gdpc: command not found
How To Fix gdpc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gdpc is provided by gdpc package.
gdpc is:
gpdc is a graphical program for visualising output data from molecular dynamics simulations. It reads input in the standard xyz format, as well as other custom formats, and can output pictures of each frame in JPG or PNG format.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gdpc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gdpc.
sudo apt -y install gdpc
Or if you have aptitude installed you can use the following command.
sudo aptitude install gdpc
Summary
In this tutorial we learn how to fix gdpc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.