alpine command not found

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

Introduction

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

alpine: command not found

or when using sudo you get the following error message

sudo: alpine: command not found

Solutions to alpine: command not found

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

In Ubuntu alpine is provided by alpine package.

alpine is:

Alpine is an upgrade of the well-known PINE email client. Its name derives from the use of the Apache License and its ties to PINE.

It features a full suite of support for mail protocols like IMAP and SMTP and security protocols like TLS. It uses curses for its interface.

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

sudo apt-get -y install alpine

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

You can also use apt command to install alpine.

sudo apt -y install alpine

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

sudo aptitude install alpine

Summary

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