When installing pip install -r requirements.txt, the error appears:
ERROR: Could not find a version that satisfies the requirement pkg-resources==0.0.0 (from versions: none)
ERROR: No matching distribution found for pkg-resources==0.0.0
Solution:
Delete pkg-resources==0.0.0 from requirements.txt.
jadijadi/bestoon#4
After that, when pip install -r requirements.txt, the error appears:
Failed to build pyzmq
ERROR: Could not build wheels for pyzmq, which is required to install pyproject.toml-based projects
Solution:
Remove version of pyzmq and zmq from requirements.txt.
Worked for me