seascope command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
seascope: command not found
or when using sudo you get the following error message
sudo: seascope: command not found
Solutions to seascope: command not found
How To Fix seascope: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu seascope is provided by seascope package.
seascope is:
Seascope is a graphical source code browsing tool with cross reference functionality support using the following backends:
- cscope
- idutils
- gtags
Seascope is written in Python and is supported on all major operating system platforms
To fix this problem, we can install more using the command below.
sudo apt-get -y install seascope
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install seascope.
sudo apt -y install seascope
Or if you have aptitude installed you can use the following command.
sudo aptitude install seascope
Summary
In this tutorial we learn how to fix seascope command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.