qrouter command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qrouter: command not found
or when using sudo you get the following error message
sudo: qrouter: command not found
Solutions to qrouter: command not found
How To Fix qrouter: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qrouter is provided by qrouter package.
qrouter is:
Qrouter is a tool to generate metal layers and vias to physically connect together a netlist in a VLSI fabrication technology. It is a maze router, otherwise known as an “over-the-cell” router or “sea-of-gates” router. That is, unlike a channel router, it begins with a description of placed standard cells, usually packed together at minimum spacing, and places metal routes over the standard cells.
Qrouter uses the open standard LEF and DEF formats as file input and output. It takes the cell definitions from a LEF file, and analyzes the geometry for each cell to determine contact points and route obstructions. It then reads the cell placement, pin placement, and netlist from a DEF file, performs the detailed route, and writes an annotated DEF file as output.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qrouter
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qrouter.
sudo apt -y install qrouter
Or if you have aptitude installed you can use the following command.
sudo aptitude install qrouter
Summary
In this tutorial we learn how to fix qrouter command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.