UCBerkeleySETI / blimpy

Breakthrough Listen I/O Methods for Python

Home Page:https://blimpy.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup.cfg fails to give h5py a "no binary" option

texadactyl opened this issue · comments

On versions of Ubuntu earler than 20 (E.g. some Ubuntu 16 Seti BL nodes), h5py needs to be installed with a no binary option, like this:

pip install --no-binary=h5py h5py

In order to automate this requirement, setup.cfg needs to include this specification:

[global]
no-binary = h5py

As it turns out, the wrong module was specified (hdf5plugin). The fix is substitution in setup.cfg followed by and re-installation.