ase command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ase: command not found
or when using sudo you get the following error message
sudo: ase: command not found
Solutions to ase: command not found
How To Fix ase: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ase is provided by ase package.
ase is:
ASE is an Atomic Simulation Environment written in the Python programming language with the aim of setting up, stearing, and analyzing atomic simulations. ASE is part of CAMPOS, the CAMP Open Source project.
ASE contains Python interfaces to several different electronic structure codes including Abinit, Asap, Dacapo, Elk, GPAW and SIESTA.
This package provides the executable scripts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ase
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ase.
sudo apt -y install ase
Or if you have aptitude installed you can use the following command.
sudo aptitude install ase
Summary
In this tutorial we learn how to fix ase command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.