nd-configurerepo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nd-configurerepo: command not found
or when using sudo you get the following error message
sudo: nd-configurerepo: command not found
Solutions to nd-configurerepo: command not found
How To Fix nd-configurerepo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nd-configurerepo is provided by neurodebian package.
neurodebian is:
The NeuroDebian project integrates and maintains a variety of software projects within Debian that are useful for neuroscience (such as AFNI, FSL, PsychoPy, etc.) or generic computation (such as HTCondor, pandas, etc.).
This package enables the NeuroDebian repository on top of a standard Debian or Ubuntu system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install neurodebian
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install neurodebian.
sudo apt -y install neurodebian
Or if you have aptitude installed you can use the following command.
sudo aptitude install neurodebian
Summary
In this tutorial we learn how to fix nd-configurerepo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.