rawtran command not found

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

Introduction

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

rawtran: command not found

or when using sudo you get the following error message

sudo: rawtran: command not found

Solutions to rawtran: command not found

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

In Ubuntu rawtran is provided by rawtran package.

rawtran is:

Rawtran is an utility to convert of raw photos in .CR2, .CRW, MRW, NEF, RAF, etc. formats to the general astronomical FITS image format. The identification of raw photo type and decoding itself is done via DCRAW utility by D.Coffin.

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

sudo apt-get -y install rawtran

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

You can also use apt command to install rawtran.

sudo apt -y install rawtran

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

sudo aptitude install rawtran

Summary

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