austin command not found

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

Introduction

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

austin: command not found

or when using sudo you get the following error message

sudo: austin: command not found

Solutions to austin: command not found

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

In Ubuntu austin is provided by austin package.

austin is:

Austin is a Python frame stack sampler for CPython written in pure C. It samples the stack traces of a Python application so that they can be visualised and analysed. As such, it serves the basis for building powerful profilers for Python.

The most interesting use of Austin is probably in conjunction with FlameGraph to profile Python applications while they are running, without the need of instrumentation. This means that Austin can be used on production code with little or even no impact on performance.

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

sudo apt-get -y install austin

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

You can also use apt command to install austin.

sudo apt -y install austin

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

sudo aptitude install austin

Summary

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