bspc command not found

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

Introduction

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

bspc: command not found

or when using sudo you get the following error message

sudo: bspc: command not found

Solutions to bspc: command not found

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

In Ubuntu bspc is provided by bspwm package.

bspwm is:

Bspwm is a tiling window manager that represents windows as the leaves of a full binary tree.

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

sudo apt-get -y install bspwm

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

You can also use apt command to install bspwm.

sudo apt -y install bspwm

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

sudo aptitude install bspwm

Summary

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