Tente atualizar seu PATH
:
export PATH="$PATH:/usr/local/hdf5"
Além disso, você pode alterar PATH
no seu ~/.profile
:
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="/usr/local/hdf5:$HOME/bin:$PATH" #this line
fi
Isto é apenas um palpite; espero ser útil.