File tree 1 file changed +25
-0
lines changed 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,31 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
25
25
This is easily achieved by downloading
26
26
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle >`_.
27
27
28
+ Installing from PyPI
29
+ ====================
30
+
31
+ On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
32
+ PyPI <https://pypi.org/project/adafruit-circuitpython-matrixkeypad/> `_. To install for current user:
33
+
34
+ .. code-block :: shell
35
+
36
+ pip3 install adafruit-circuitpython-matrixkeypad
37
+
38
+ To install system-wide (this may be required in some cases):
39
+
40
+ .. code-block :: shell
41
+
42
+ sudo pip3 install adafruit-circuitpython-matrixkeypad
43
+
44
+ To install in a virtual environment in your current project:
45
+
46
+ .. code-block :: shell
47
+
48
+ mkdir project-name && cd project-name
49
+ python3 -m venv .env
50
+ source .env/bin/activate
51
+ pip3 install adafruit-circuitpython-matrixkeypad
52
+
28
53
Usage Example
29
54
=============
30
55
You can’t perform that action at this time.
0 commit comments