Skip to content
Snippets Groups Projects
Commit 0535d033 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/README: Add section on using upip.

parent 9c209e4d
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,23 @@ Python prompt over WiFi, connecting through a browser.
- GitHub repository https://github.com/micropython/webrepl.
Please follow the instructions there.
__upip__
The ESP8266 port comes with builtin `upip` package manager, which can
be used to install additional modules (see the main README for more
information):
```
>>> import upip
>>> upip.install("micropython-pystone_lowmem")
[...]
>>> import pystone_lowmem
>>> pystone_lowmem.main()
```
Downloading and installing packages may requite a lot of free memory,
if you get an error, retry immediately after the hard reset.
Documentation
-------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment