31

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.

4

1 回答 1

64

我不知道 linux 发行版“ubuntu centOS”是什么。Ubuntu 和 CentOS 是两个不同的发行版。

要回答标题中的问题:要在 ubuntu 中安装 make,您必须安装 build-essentials

sudo apt-get install build-essential
于 2012-08-13T13:25:57.893 回答