Reputation: 21
This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for pycryptodome
Running setup.py clean for pycryptodome
Failed to build pycryptodome
ERROR: Could not build wheels for pycryptodome, which is required to install pyproject.toml-based projects
Upvotes: 0
Views: 417
Reputation: 1
Try to install a specific version of Pyrebase In my case:
pip install pyrebase4==4.7.1
Upvotes: 0
Reputation: 28
Try to install pycryptodome directly from .whl
file. You can download it here: https://www.wheelodex.org/projects/pycryptodome/
If that doesn't work try updating pip: pip install --upgrade pip
Upvotes: 1