I found the official guide about how to install Qt 4.8.5 on Ubuntu 12.04
But that approach requires building Qt SDK (which may take some time) and setting everything manually. Moreover I need also fulfil this requirements.
Later I need also install Qt Creator, but when I use a terminal:
sudo apt-get install qtcreator
it will also install Qt 5 as a dependency and I get a big mess.
How to install Qt 4.8.5 and Qt Creator from terminal using apt-get
? Or maybe exists some other way?
apt-get
installs the latest version of package and sometimes not. Because in your caseapt-get
installs qt5 instead of qt4. In my case (long time ago when installing gcc)apt-get
installs gcc-4.6.3 instead of gcc-4.7.2. But I like usingsynaptic
because it is easier to search for depedencies. Sorry if I can't give a proper answer. :) – micmec Jan 20 '14 at 01:01