summaryrefslogtreecommitdiff
path: root/docs/reference
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-12-16 10:37:36 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-12-16 10:37:36 +0200
commit9251f1395efff46bb63f5010534452f4c437206f (patch)
tree7b13d924bfb1e0f960e47f1587ba21eeaedc8902 /docs/reference
parent02d2a0fb3a004238b5c15e02b0699824b385ee96 (diff)
docs/packages: Use "install_dir/" in examples.
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/packages.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/packages.rst b/docs/reference/packages.rst
index 3d05f0b27..efe119f71 100644
--- a/docs/reference/packages.rst
+++ b/docs/reference/packages.rst
@@ -130,12 +130,12 @@ transferring this image to a device by suitable means.
Installing to a directory image involves using ``-p`` switch to `upip`::
- micropython -m upip install -p install_image micropython-pystone_lowmem
+ micropython -m upip install -p install_dir micropython-pystone_lowmem
After this command, the package content (and contents of every depenency
-packages) will be available in the ``install_image/`` subdirectory. You
+packages) will be available in the ``install_dir/`` subdirectory. You
would need to transfer contents of this directory (without the
-``install_image/`` prefix) to the device, at the suitable location, where
+``install_dir/`` prefix) to the device, at the suitable location, where
it can be found by the Python ``import`` statement (see discussion of
the `upip` installation path above).