storm command not found

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

Introduction

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

storm: command not found

or when using sudo you get the following error message

sudo: storm: command not found

Solutions to storm: command not found

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

In Ubuntu storm is provided by storm-lang package.

storm-lang is:

Storm is a language system for extensible languages. It allows creating multiple languages and DSLs that are able to operate in close cooperation. Not too dissimilar from LISP systems, but with custom syntax.

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

sudo apt-get -y install storm-lang

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

You can also use apt command to install storm-lang.

sudo apt -y install storm-lang

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

sudo aptitude install storm-lang

Summary

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