socnetv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
socnetv: command not found
or when using sudo you get the following error message
sudo: socnetv: command not found
Solutions to socnetv: command not found
How To Fix socnetv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu socnetv is provided by socnetv package.
socnetv is:
SocNetV (Social Network Visualiser) is a flexible and user-friendly tool for Social Networks Analysis and Visualisation. It lets you create new networks (graphs) with a few clicks on a virtual canvas or load networks of various formats (GraphML, GraphViz, Adjacency, UCINET, Pajek, etc) and modify them to suit your needs.
The application can compute network properties, such as density, diameter and geodesic distances, as well as node-wise and network indices such as various types of Centrality and Prestige. Various layout algorithms (i.e. Spring-embedder, circular and in levels according to prominence indices) are supported for meaningful visualisations of your networks. Furthermore, it can create various random networks (Erdos-Renyi, Watts-Strogatz, ring lattice, etc) with a few clicks.
To fix this problem, we can install more using the command below.
sudo apt-get -y install socnetv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install socnetv.
sudo apt -y install socnetv
Or if you have aptitude installed you can use the following command.
sudo aptitude install socnetv
Summary
In this tutorial we learn how to fix socnetv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.