mricron command not found

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

Introduction

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

mricron: command not found

or when using sudo you get the following error message

sudo: mricron: command not found

Solutions to mricron: command not found

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

In Ubuntu mricron is provided by mricron package.

mricron is:

This is a GUI-based visualization and analysis tool for (functional) magnetic resonance imaging. MRIcron can be used to create 2D or 3D renderings of statistical overlay maps on brain anatomy images. Moreover, it aids drawing anatomical regions-of-interest (ROI), or lesion mapping, as well as basic analysis of functional timeseries (e.g. creating plots of peristimulus signal-change).

In addition to ‘mricron’, this package also provides ‘dcm2nii’ that supports converting DICOM and PAR/REC images into the NIfTI format, and ’npm’ for non-parametric data analysis.

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

sudo apt-get -y install mricron

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

You can also use apt command to install mricron.

sudo apt -y install mricron

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

sudo aptitude install mricron

Summary

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