How to find Version of Qt?

后端 未结 7 1558
無奈伤痛
無奈伤痛 2020-12-29 01:24

How do I know which version of Qt I am using? When I open Qt Creator it shows \"Welcome to Qt Creator 2.3\". In the build setting, however, it shows Qt Version 4.7.1.

相关标签:
7条回答
  • 2020-12-29 02:21

    my usual starting point to investigate which software is installed is with

    dpkg -l | grep "what I am looking for"
    

    you should get a list of installed packages. Then with

    dpkg -L "packagename" # (or whatever your package manager is)
    

    you get a list of installed files for that package

    0 讨论(0)
提交回复
热议问题