Configuration:
- macOS 10.14
- Python 3.7.1
I am trying to install pycocotools and openpifpaf by issuing this command that should install openpifpaf and pycocotools:
pip3 install 'openpifpaf[train,test]'==0.5.2
as it is mentioned in my project work.
I looked at previous similar questions and tried to update setuptools and wheels, it did not help.
Basically the final message error are:
ERROR: Failed building wheel for pycocotools
ERROR: Failed building wheel for openpifpaf
I can provide more details on the error if necessary, I have no idea of how to fix it.
pycocotoolsis a bit special. It requires pre-installedCythonandnumpyand pure pip cannot handle an order in the dependencies. You have to runpip3 install numpy cythonbefore you can install openpifpaf with thetraindependency.I hope you find openpifpaf useful. Feel free to open an issue for this kind of question; I would have seen that earlier.