We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c209e4 commit 0535d03Copy full SHA for 0535d03
1 file changed
ports/esp8266/README.md
@@ -119,6 +119,23 @@ Python prompt over WiFi, connecting through a browser.
119
- GitHub repository https://github.com/micropython/webrepl.
120
Please follow the instructions there.
121
122
+__upip__
123
+
124
+The ESP8266 port comes with builtin `upip` package manager, which can
125
+be used to install additional modules (see the main README for more
126
+information):
127
128
+```
129
+>>> import upip
130
+>>> upip.install("micropython-pystone_lowmem")
131
+[...]
132
+>>> import pystone_lowmem
133
+>>> pystone_lowmem.main()
134
135
136
+Downloading and installing packages may requite a lot of free memory,
137
+if you get an error, retry immediately after the hard reset.
138
139
Documentation
140
-------------
141
0 commit comments