molequeue command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
molequeue: command not found
or when using sudo you get the following error message
sudo: molequeue: command not found
Solutions to molequeue: command not found
How To Fix molequeue: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu molequeue is provided by molequeue package.
molequeue is:
MoleQueue is a desktop application for abstracting, managing, and coordinating the execution of tasks both locally and on remote computational resources. Users can set up local and remote queues that describe where the task will be executed. Each queue can have programs, with templates to facilitate the execution of the program. Input files can be staged, and output files collected using a standard interface. Some highlights:
- Intuitive interface designed to be useful to whole community
- Support for local executation and remote schedulers (SGE, PBS, SLURM)
- System tray resident application managing queue of queues and job lifetime
- Simple, lightweight JSON-RPC 2.0 based communication over local sockets
To fix this problem, we can install more using the command below.
sudo apt-get -y install molequeue
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install molequeue.
sudo apt -y install molequeue
Or if you have aptitude installed you can use the following command.
sudo aptitude install molequeue
Summary
In this tutorial we learn how to fix molequeue command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.