Reputation: 671
I installed several tools after moving from "port" to "homebrew" but was not able to install es-tools. Python (3.10) would not be able to install it as a model with pip, it does not build it since "reedsolo" has errors.
Is there a workaround since esptool.py is on my system
Upvotes: 0
Views: 919
Reputation: 671
Found the solution in GitHub : https://githubhot.com/repo/espressif/esptool/issues/711
python -m pip install --only-binary :all: --extra-index-url https://dl.espressif.com/pypi/ reedsolo
and
pip -m pip install --only-binary :all: --extra-index-url https://dl.espressif.com/pypi/ esptool
Upvotes: 1