reprounzip command not found

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

Introduction

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

reprounzip: command not found

or when using sudo you get the following error message

sudo: reprounzip: command not found

Solutions to reprounzip: command not found

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

In Ubuntu reprounzip is provided by reprounzip package.

reprounzip is:

ReproZip is a tool aimed at simplifying the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science.

It tracks operating system calls and creates a package that contains all the binaries, files and dependencies required to run a given command on the author’s computational environment (packing step). A reviewer can then extract the experiment in his environment to reproduce the results (unpacking step).

This package provides the ReproZip unpacker.

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

sudo apt-get -y install reprounzip

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

You can also use apt command to install reprounzip.

sudo apt -y install reprounzip

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

sudo aptitude install reprounzip

Summary

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