npm2deb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
npm2deb: command not found
or when using sudo you get the following error message
sudo: npm2deb: command not found
Solutions to npm2deb: command not found
How To Fix npm2deb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu npm2deb is provided by npm2deb package.
npm2deb is:
This application eases packaging Node.js modules available via npm.
It is also able to list modules dependencies and check which ones are already available as Debian packages.
Node.js is an event-based server-side JavaScript engine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install npm2deb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install npm2deb.
sudo apt -y install npm2deb
Or if you have aptitude installed you can use the following command.
sudo aptitude install npm2deb
Summary
In this tutorial we learn how to fix npm2deb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.