buble command not found

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

Introduction

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

buble: command not found

or when using sudo you get the following error message

sudo: buble: command not found

Solutions to buble: command not found

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

In Ubuntu buble is provided by node-buble package.

node-buble is:

Bublé is a ES2015 compiler : it will turn ES6 javascript code into Javascript that can run in older ES5 environments. Notice that not all of ES6 is supported, either because they give size or performance issues or because they can’t be transpiled to ES5.

ES6 (or ES2015) is ECMAScript version 6 released in 2015 and is supported for instance by Firefox 55. The older ES5 released in 2011 was supported for instance by Firefox 4.

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 node-buble

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

You can also use apt command to install node-buble.

sudo apt -y install node-buble

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

sudo aptitude install node-buble

Summary

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