How To Install Make
How To Install Make
preview
date
Jun 2, 2023
img_Link
slug
how-to-install-make
status
Published
summary
How To Install Make
type
Post
link
tags
Cosmos SDK
Tutorial
projectstype
tech
client

How to install the Make package on Ubuntu

Before installing the make package, it is better to update your already installed packages; otherwise, you may find compatibility issues with some software. You can do that by typing.
sudo apt update
This command will provide you with the information of all outdated packages that can be upgraded to the newer version, so this is highly recommended before installing any new package. Make package comes in default in the Ubuntu OS, so you should verify if it is already installed before considering installing it. You can verify it by typing the below-mentioned command in the terminal.
make -version
If the make package is not installed in Ubuntu due to any reason, you will get the error as shown below.
notion imagenotion image
You can install the make package by typing.
sudo apt install make
sudo apt install build-essential
sudo apt-get install jq
Your system should have a make directory; otherwise, you cannot use the make package. You can verify that by typing.
ls /usr/bin/make
After its installation, you should check the make version to verify if it is properly installed or not. You can also verify the make directory that you won’t see if it is not working correctly before. You can check the version as discussed before by typing the command.
notion imagenotion image
And you can check the make directory, use:
ls /usr/bin/make
notion imagenotion image