-
|
Hello, The micropython official documentation says to download The same micropython doc says to use the NONOS SDK so looking at their official listings https://github.com/espressif/ESP8266_NONOS_SDK/releases but only seeing code release, not compiled binaries (and they're version 3.x, pretty new unsure if they will work) So I tried building 154, but it fails (mind you, I've had very little expose to makefile based builds) Are there working windows binaries somewhere I can download? And if not, how would I go about building these? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
While I am an avid Windows user, I often prefer to build in WSL2 + Docker. |
Beta Was this translation helpful? Give feedback.
-
|
Just create a free account on https://labs.play-with-docker.com Then in your Docker playground, follow the steps from the micropython website to compile (using Docker) for esp8266. You can get the compiled binary with scp (putty or whatever) or in Docker playground by setting up a simple server with Python. I just did a test. It cost me about two minutes to get micropython and compile the binary. (from scratch, having already an account). Sometimes the site seems to be a bit busy so try again later. |
Beta Was this translation helpful? Give feedback.
While I am an avid Windows user, I often prefer to build in WSL2 + Docker.
It takes a one-time setup for those and clone MicroPython inside WSL. VSCode makes that rather seamless.
After that I use mpbuild to handle the setup and configuration of all the the different toolchains for me.