One more thing leon30,
I found a guide for installing IntelliJ IDE on Fedora 23
https://technoref.wordpress.com/2016/01/19/install-idea-intellij-in-fedora-23/
You may or may not have to install additional development tool packages.
See below for details
==============================
Fedora does not include the same "build-essentials" package that Ubuntu distros use.
If you plan on recompiling software or doing any kind of coding work, you will need to install additional software.
Whatever variant of Fedora you install will use
yum or
dnf. dnf is the next-gen replacement for yum, yum & dnf are functionally identical, so the same commands will work on both.
miminalist coding software for Fedora:
open a terminal window, su - to root , or sudo the following:
dnf install make automake gcc gcc-c++ kernel-devel Ex: "sudo dnf install make automake gcc gcc-c++ kernel-devel"
For installing full blown development tools & development libraries in Fedora,
open a terminal window, su - to root , or sudo the following:
dnf groupinstall "Development Tools" "Development Libraries" Ex: 'sudo dnf groupinstall "Development Tools" "Development Libraries" '
...without the ' comments
===========