Last updated: Feb 26, 2024
Reading time·2 min

The AWS EC2 "apt-get: command not found" error occurs when we try to use the
apt-get package manager on an EC2 instance that is launched with a non-Debian
Amazon Machine Image.

To solve the "apt-get: command not found" error replace apt-get with yum,
e.g. sudo yum install curl. The yum package manager is used in all
Amazon Linux AMIs.
sudo yum install curl

Yum is the primary package manager for Amazon Linux AMIs and Red Hat Linux systems.If the error persists after trying the yum command, you have to verify which
AMI your EC2 instance is launched with:
Instance details section and open the AMI ID in a new
tab.
Public images from the dropdown filter and look at the details of
your AMI.
You can learn more about the related topics by checking out the following tutorials: