rusty-tags command not found

In this troubleshooting guide we learn how to fix rusty-tags command not found error message

Introduction

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

rusty-tags: command not found

or when using sudo you get the following error message

sudo: rusty-tags: command not found

Solutions to rusty-tags: command not found

How To Fix rusty-tags: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rusty-tags is provided by rusty-tags package.

rusty-tags is:

rusty-tags is a command-line tool that creates tags for source code navigation using ctags for a cargo project, all of its direct and indirect dependencies and the Rust standard library.

This package contains the following binaries built from the Rust crate “rusty-tags”:

  • rusty-tags

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

sudo apt-get -y install rusty-tags

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

You can also use apt command to install rusty-tags.

sudo apt -y install rusty-tags

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

sudo aptitude install rusty-tags

Summary

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