megadown command not found

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

Introduction

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

megadown: command not found

or when using sudo you get the following error message

sudo: megadown: command not found

Solutions to megadown: command not found

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

In Ubuntu megadown is provided by megadown package.

megadown is:

This package contains a Bash script, and a Python helper, which download files from mega.nz and megacrypter. Downloaded files are by default placed inside the current directory. It supports speed limiting and can only print file metadata before exiting. There is also a multi-URL mode, where an input file is processed, which acts as a URL list.

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

sudo apt-get -y install megadown

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

You can also use apt command to install megadown.

sudo apt -y install megadown

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

sudo aptitude install megadown

Summary

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