Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install qt5 to Debian using commandline?

Tags:

qt

debian

qt5

I need to install Qt5 to my Debian using commandline. How can I do that?

My system: debian 2.6.30-vortex86mx-yh

I am trying to install using qt online installer from qt-project.org. But after ./qt.run I get this error:

libstdc++.so.6 version glibcxx_3.4.11 not found

I try to install libstdc++6. but Debian said it is already newest version.

cat /etc/issue result is:

Debian 5.0

Also my debian has no gui. I have to do it using commandline.

like image 204
dec Avatar asked Nov 03 '22 18:11

dec


1 Answers

Try this command for installing from default debian 5 repository:

#apt install g++
#apt install qtcreator
#apt install qtdeclarative5-dev
like image 68
Ilya Sharkov Avatar answered Nov 08 '22 06:11

Ilya Sharkov