GSMarkupLocalizableStrings command not found

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

Introduction

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

GSMarkupLocalizableStrings: command not found

or when using sudo you get the following error message

sudo: GSMarkupLocalizableStrings: command not found

Solutions to GSMarkupLocalizableStrings: command not found

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

In Ubuntu GSMarkupLocalizableStrings is provided by librenaissance0-dev package.

librenaissance0-dev is:

Renaissance is a GNUstep develoment framework which runs on top of the GNUstep libraries. It also works on top of the Apple Mac OS X Cocoa libraries, providing an opaque layer to write portable applications.

GNUstep Renaissance allows you to describe your user interface in simple and intuitive XML files, using an open, standard format describing the logic of the interface. At run-time, GNUstep Renaissance will then generate the user interfaces (using the native host OpenStep-like libraries) by reading the XML files. The connections between the objects created from the XML files, and the other objects in the application are done via outlets (as traditionally in OpenStep); a new quick and intuitive syntax has been developed to make creating outlets as easy as possible.

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

sudo apt-get -y install librenaissance0-dev

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

You can also use apt command to install librenaissance0-dev.

sudo apt -y install librenaissance0-dev

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

sudo aptitude install librenaissance0-dev

Summary

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