bioblend-galaxy-tests command not found

In this troubleshooting guide we learn how to fix bioblend-galaxy-tests command not found error message

Introduction

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

bioblend-galaxy-tests: command not found

or when using sudo you get the following error message

sudo: bioblend-galaxy-tests: command not found

Solutions to bioblend-galaxy-tests: command not found

How To Fix bioblend-galaxy-tests: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu bioblend-galaxy-tests is provided by python3-bioblend package.

python3-bioblend is:

BioBlend is a Python library for interacting with CloudMan and Galaxy’s API. BioBlend is supported and tested on: · Python 2.6, 2.7, 3.3 and 3.4 · Galaxy release_14.02 and later. Conceptually, it makes it possible to script and automate the process of cloud infrastructure provisioning and scaling via CloudMan, and run‐ ning of analyses via Galaxy. In reality, it makes it possible to do things like this: · Create a CloudMan compute cluster, via an API and directly from your local machine: · Reconnect to an existing CloudMan instance and manipulate it · Interact with Galaxy via a straightforward API

Although this library allows you to blend these two services into a cohesive unit, the library itself can be used with either service irrespective of the other. For example, you can use it to just manipulate CloudMan clusters or to script the interactions with an instance of Galaxy running on your laptop.

This package installs the library for Python 3.

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

sudo apt-get -y install python3-bioblend

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

You can also use apt command to install python3-bioblend.

sudo apt -y install python3-bioblend

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

sudo aptitude install python3-bioblend

Summary

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