diff options
author | Damien George <damien.p.george@gmail.com> | 2016-05-03 14:05:50 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-05-03 14:05:50 +0100 |
commit | 5d05993f109e5fc44e4cddad73c9c921725d9c7f (patch) | |
tree | b8f309dea4e93c74e511691433e0df642d52de82 /docs/esp8266/tutorial | |
parent | 8af64bcf2b9443bcc7039566e02aa5cd7592b3db (diff) | |
download | micropython-5d05993f109e5fc44e4cddad73c9c921725d9c7f.tar.gz micropython-5d05993f109e5fc44e4cddad73c9c921725d9c7f.zip |
esp8266/tutorial: Mention that esptool is available via pip.
Diffstat (limited to 'docs/esp8266/tutorial')
-rw-r--r-- | docs/esp8266/tutorial/intro.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/esp8266/tutorial/intro.rst b/docs/esp8266/tutorial/intro.rst index 2db2ba5bd5..9b61737c52 100644 --- a/docs/esp8266/tutorial/intro.rst +++ b/docs/esp8266/tutorial/intro.rst @@ -51,7 +51,13 @@ For best results it is recommended to first erase the entire flash of your device before putting on new MicroPython firmware. Currently we only support esptool.py to copy across the firmware. You can find -this tool here: `<https://github.com/themadinventor/esptool/>`__ . Any other +this tool here: `<https://github.com/themadinventor/esptool/>`__, or install it +using pip:: + + pip install esptool + +It requires Python 2.7, so you may need to use ``pip2`` instead of ``pip`` in +the command above. Any other flashing program should work, so feel free to try them out, or refer to the documentation for your board to see its recommendations. |