linux - Install qmake in debian 7.11 -


i'm using debian 7.11.

i said qt5 not supported apt-get.

$apt-get install qt4-qmake 

it works.

however,

$apt-get install qt5-qmake  e: unable locate package qt5-qmake 

is there work-around way install qt5 in debian 7?

these sources.list

$less /etc/apt/sources.list  deb http://apt.readynas.com/packages/readynasos 6.5.1 updates apps main  deb http://mirrors.kernel.org/debian wheezy main deb http://security.debian.org/ wheezy/updates main  deb http://egnyte-cdn.egnyte.com/storagesync/netgear6/en-us 6.5 egnyte deb ftp://ftp.nerim.net/debian-marillat/ stable main 

if saw things correctly, qt 5 available in jessie repositories

you should either install debian based on jessie (so use packages it) or add repositories jessie in sources.list (copy lines stable , change target testing), sync , install qt 5

change wheezy example:

deb http://http.debian.net/debian wheezy main

to jessie:

deb http://http.debian.net/debian jessie main

hope helps


Comments