To install sra-toolkit, I have to install dependencies such as libxml2
, libhdf5
, and libmagic
. My Linux is Ubuntu Focal 20.04. So, for installing these dependencies I ran below code in terminal:
sudo apt install libhdf5
but I got below message:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libhdf5
I don't know how can I solve this problem? I appreciate if anybody share his/her with me.
sudo apt install libhdf5-dev
? – robertspierre Dec 22 '20 at 09:30apt policy libhdf5*
. – Jos Dec 22 '20 at 09:31