@@ -16,11 +16,16 @@ Usage
16
16
micropython-lib packages are published on PyPI (Python Package Index),
17
17
the standard Python community package repository: http://pypi.python.org/ .
18
18
On PyPI, you can search for MicroPython related packages and read
19
- additional package information.
19
+ additional package information. By convention, all micropython-lib package
20
+ names are prefixed with "micropython-".
21
+ Browse available packages
22
+ [ via this URL] ( https://pypi.python.org/pypi?%3Aaction=search&term=micropython ) .
23
+ (Note: search results may include both micropython-lib and 3rd-party
24
+ packages).
20
25
21
26
To install packages from PyPI for usage on your local system, use the
22
27
` upip ` tool, which is MicroPython's native package manager, similar to
23
- ` upip ` , which is used to install packages for CPython. ` upip ` is bundled
28
+ ` pip ` , which is used to install packages for CPython. ` upip ` is bundled
24
29
with MicroPython "Unix" port (i.e. if you build "Unix" port, you
25
30
automatically have ` upip ` tool). Following examples assume that
26
31
` micropython ` binary is available on your ` PATH ` :
@@ -29,7 +34,7 @@ automatically have `upip` tool). Following examples assume that
29
34
$ micropython -m upip install micropython-pystone
30
35
...
31
36
$ micropython
32
- >>> import pyston
37
+ >>> import pystone
33
38
>>> pystone.main()
34
39
Pystone(1.2) time for 50000 passes = 0.534
35
40
This machine benchmarks at 93633 pystones/second
0 commit comments