admsXml command not found

In this troubleshooting guide we learn how to fix admsXml command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

admsXml: command not found

or when using sudo you get the following error message

sudo: admsXml: command not found

Solutions to admsXml: command not found

How To Fix admsXml: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu admsXml is provided by adms package.

adms is:

ADMS is a code generator that converts electrical compact device models specified in high-level description language into ready-to-compile c code for the API of spice simulators. Based on transformations specified in xml language adms transforms Verilog-AMS code into other target languages.

To fix this problem, we can install more using the command below.

sudo apt-get -y install adms

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install adms.

sudo apt -y install adms

Or if you have aptitude installed you can use the following command.

sudo aptitude install adms

Summary

In this tutorial we learn how to fix admsXml command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.