How to install "Development Tools" under Fedora 41

,

I tried using the newer syntax to install C++ development tools, but the following doesn’t work?

$ sudo dnf group install 'Development tools'

I get the following error:

Updating and loading repositories:
Repositories loaded.
Failed to resolve the transaction:
No match for argument: Development tools
You can try to add to command line:
  --skip-unavailable to skip unavailable packages

You would need to use the following command to install the Development Tools group:

sudo dnf group install development-tools
3 Likes

Added dnf, f41

Perfect thank you @theqlp

1 Like

That also works with the newer dnf5 syntax
dnf install @development-tools

2 Likes

Duly noted, thank you @computersavvy