oasis command not found

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

Introduction

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

oasis: command not found

or when using sudo you get the following error message

sudo: oasis: command not found

Solutions to oasis: command not found

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

In Ubuntu oasis is provided by oasis package.

oasis is:

OASIS generates a full configure, build and install system for your application. It starts with a simple _oasis file at the toplevel of your project and creates everything required.

It uses external tools like OCamlbuild and it can be considered as the glue between various subsystems that do the job. It should support the following tools:

  • OCamlbuild
  • OMake (todo)
  • OCamlMakefile (todo),
  • ocaml-autoconf (todo)

It also features a do-it-yourself command line invocation and an internal configure/install scheme. Libraries are managed through findlib. It has been tested on GNU Linux and Windows.

OASIS supports standard entry points and descriptions. It helps to integrates your libraries and software with third parties tools like GODI.

This package contains command-line tools.

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

sudo apt-get -y install oasis

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

You can also use apt command to install oasis.

sudo apt -y install oasis

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

sudo aptitude install oasis

Summary

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