Installing h5py on an Ubuntu server

前端 未结 5 1185
一个人的身影
一个人的身影 2020-12-14 00:03

I was installing h5py on an Ubuntu server. However it seems to return an error that h5py.h is not found. It gives the same error message when I install it using

5条回答
  •  臣服心动
    2020-12-14 00:53

    I had to install both libhdf5-dev and cython3 (Ubuntu 18.04 on arm64 device, Python 3.5).

    sudo apt install libhdf5-dev
    sudo apt install cython3
    

提交回复
热议问题