Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install "make" in ubuntu? [closed]

I'm trying to install "yum" or "apt-get" into my system "ubuntu centOS". I did download the binary files for these two programs from the internet using the command wget. but after decompressing the files using the command "tar -zxvf "filename" ,then configuring the file "./configuring", and then when I want to use the command "make" I get the following error "make: not found".

I have searched for a method to download the "make" command but all the methods I found on the net use either the command "yum" or "apt-get" and I don't have any of them.

like image 271
kadora Avatar asked Aug 13 '12 13:08

kadora


People also ask

Is make included in Ubuntu?

Make package comes in default in the Ubuntu OS, so you should verify if it is already installed before considering installing it.


1 Answers

I have no idea what linux distribution "ubuntu centOS" is. Ubuntu and CentOS are two different distributions.

To answer the question in the header: To install make in ubuntu you have to install build-essentials

sudo apt-get install build-essential 
like image 189
steffenhk Avatar answered Sep 20 '22 20:09

steffenhk