Coliban
Coliban

Reputation: 671

Esptool not found on Mac OS M1 Monterey 12.4

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

Answers (1)

Coliban
Coliban

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

Related Questions