reprozip command not found

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

Introduction

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

reprozip: command not found

or when using sudo you get the following error message

sudo: reprozip: command not found

Solutions to reprozip: command not found

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

In Ubuntu reprozip is provided by reprozip package.

reprozip 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 packer.

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

sudo apt-get -y install reprozip

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

You can also use apt command to install reprozip.

sudo apt -y install reprozip

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

sudo aptitude install reprozip

Summary

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