I was getting the following error when I was running pip3 install -r requirements.txt:
error: invalid command 'bdist_wheel'
Failed building wheel for pyyaml
Installing wheel solved the problem:
pip3 install wheel
I'm not sure if this should actually be in requirements here in this package or rather in pyyaml...