Search code examples
linuxstatic-librarieshdf5

check library version hdf5 linux


how do I determine which version of the hdf5 library is installed on my system? Is there a command line? I tried to use the dpkg-query --list command but it doesn't work.

I am on ubuntu


Solution

  • Have you tried this?

    dpkg -l | grep hdf5
    

    This may help you https://superuser.com/a/690391.