answered
2016-12-12 16:04:57 +0200
You can do it the manual way by listing all packages that were installed as dependency and then removing each one by hand:
First, list the packages, that were recently installed with:
rpm -qa --last | head
This lists the last 10 packages, which may include those that are installed when you enable developer mode. In this case, just omit "| head", so the command ist: rpm -qa --last
Now, you should (hopefully) find all packages that were installed at the same time with the package you want to remove. Remove them with
pkcon remove <packages (without version number)>
The question is: is it safe? I mean.. An OS that uses dependencies for apps to work, maybe have commond dependencies. The solution for safety (but not for space) is MacOS
palikao ( 2016-12-13 11:16:46 +0200 )edit