Downloading 'Yum groupinstall "development tools"'?
I've looked all over and build essentials are all I see that was replaced by Development tools. When I type the command I receive "no such c开发者_JAVA技巧ommand".
What is the alternative to this?
apt-get build-dep package-i-want-to-build
to get everything you need to build package
- often the easiest way to get the dev tools is to pick a sufficiently complicated package like pidgin and run this
or
apt-get install build-essential
to just get a compiler
Ubuntu doesn't use yum. You still want to use the apt instructions.
Debian, Ubuntu, Mint, etc. have APT package manager, not YUM. In these OSes you generally need to do following to install basic development tools, like C and C++ compilers, binutils, etc:
sudo apt install build-essential
精彩评论