How To Install python3-pygraph on Debian 9
Introduction
In this tutorial we learn how to install python3-pygraph
on Debian 9.
What is python3-pygraph
python3-pygraph is:
This software provides a suitable data structure for representing graphs and a whole set of important algorithms.
Provided features and algorithms:
Support for directed, undirected, weighted and non-weighted graphs
Support for hypergraphs
Canonical operations
XML import and export
DOT-Language output (for usage with Graphviz)
Random graph generation
Accessibility (transitive closure)
Breadth-first search
Critical path algorithm
Cut-vertex and cut-edge identification
Cycle detection
Depth-first search
Heuristic search (A* algorithm)
Identification of connected components
Minimum spanning tree (Prim’s algorithm)
Mutual-accessibility (strongly connected components)
Shortest path search (Dijkstra’s algorithm)
Topological sorting
Transitive edge identification
This package contains the Python 3 version of pygraph.
There are three methods to install python3-pygraph
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install python3-pygraph Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python3-pygraph
using apt-get
by running the following command:
sudo apt-get -y install python3-pygraph
Install python3-pygraph Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-pygraph
using apt
by running the following command:
sudo apt -y install python3-pygraph
Install python3-pygraph Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install python3-pygraph
using aptitude
by running the following command:
sudo aptitude -y install python3-pygraph
How To Uninstall python3-pygraph on Debian 9
To uninstall only the python3-pygraph
package we can use the following command:
sudo apt-get remove python3-pygraph
Uninstall python3-pygraph And Its Dependencies
To uninstall python3-pygraph
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove python3-pygraph
Remove python3-pygraph Configurations and Data
To remove python3-pygraph
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge python3-pygraph
Remove python3-pygraph configuration, data, and all of its dependencies
We can use the following command to remove python3-pygraph
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-pygraph
Dependencies
python3-pygraph have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-pygraph
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.