BotMaker
BotMaker copied to clipboard
can't install pkg_resourses, can't build wheels for pyzmq
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. https://github.com/jadijadi/bestoon/pull/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