gprename command not found

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

Introduction

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

gprename: command not found

or when using sudo you get the following error message

sudo: gprename: command not found

Solutions to gprename: command not found

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

In Ubuntu gprename is provided by gprename package.

gprename is:

GPRename is a complete batch renamer for files and directories. It can easily replace, remove, insert, delete, and number consecutively files and directories using a graphical interface (GUI).

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

sudo apt-get -y install gprename

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

You can also use apt command to install gprename.

sudo apt -y install gprename

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

sudo aptitude install gprename

Summary

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