love-11.3 command not found

In this troubleshooting guide we learn how to fix love-11.3 command not found error message

Introduction

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

love-11.3: command not found

or when using sudo you get the following error message

sudo: love-11.3: command not found

Solutions to love-11.3: command not found

How To Fix love-11.3: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu love-11.3 is provided by love package.

love is:

LÖVE was created to be a user-friendly engine in which simple (or complicated) games could be made without having extensive knowledge of system or graphics functions and without having to dedicate time towards developing the same engine features time and time again.

Developed with cross-platform implementation in mind, it utilizes the latest open source libraries to deliver a similar game experience, independent of operating system. By relying on the Lua scripting language for game-specific programming, it allows even the novice game creator to quickly and efficiently develop an idea into a fully working game.

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

sudo apt-get -y install love

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

You can also use apt command to install love.

sudo apt -y install love

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

sudo aptitude install love

Summary

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