gpicview command not found
In this troubleshooting guide we learn how to fix gpicview command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
gpicview: command not found
or when using sudo you get the following error message
sudo: gpicview: command not found
Solutions to gpicview: command not found
How To Fix gpicview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gpicview is provided by gpicview package.
gpicview is:
GPicView is a lightweight GTK+ 2.x based image viewer with following features:
- Extremely lightweight and fast with low memory usage
- Very suitable for default image viewer of desktop system
- Simple and intuitive interface
- Minimal lib dependency: Only pure GTK+ is used
- Desktop independent: Doesn’t require any specific desktop environment
To fix this problem, we can install more using the command below.
sudo apt-get -y install gpicview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gpicview.
sudo apt -y install gpicview
Or if you have aptitude installed you can use the following command.
sudo aptitude install gpicview
Summary
In this tutorial we learn how to fix gpicview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.