make-microsoft-freecell-board command not found

In this troubleshooting guide we learn how to fix make-microsoft-freecell-board command not found error message

Introduction

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

make-microsoft-freecell-board: command not found

or when using sudo you get the following error message

sudo: make-microsoft-freecell-board: command not found

Solutions to make-microsoft-freecell-board: command not found

How To Fix make-microsoft-freecell-board: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu make-microsoft-freecell-board is provided by freecell-solver-bin package.

freecell-solver-bin is:

Freecell Solver is a library for automatically solving boards of Freecell and similar variants of card Solitaire. This package contains the header files and static libraries necessary for developing programs using Freecell Solver.

This package contains the binaries included with freecell-solver

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

sudo apt-get -y install freecell-solver-bin

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

You can also use apt command to install freecell-solver-bin.

sudo apt -y install freecell-solver-bin

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

sudo aptitude install freecell-solver-bin

Summary

In this tutorial we learn how to fix make-microsoft-freecell-board command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.