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 @@ -33,6 +33,31 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
33
33
This is easily achieved by downloading
34
34
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle >`_.
35
35
36
+ Installing from PyPI
37
+ ====================
38
+
39
+ On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
40
+ PyPI <https://pypi.org/project/adafruit-circuitpython-ht16k33/> `_. To install for current user:
41
+
42
+ .. code-block :: shell
43
+
44
+ pip3 install adafruit-circuitpython-ht16k33
45
+
46
+ To install system-wide (this may be required in some cases):
47
+
48
+ .. code-block :: shell
49
+
50
+ sudo pip3 install adafruit-circuitpython-ht16k33
51
+
52
+ To install in a virtual environment in your current project:
53
+
54
+ .. code-block :: shell
55
+
56
+ mkdir project-name && cd project-name
57
+ python3 -m venv .env
58
+ source .env/bin/activate
59
+ pip3 install adafruit-circuitpython-ht16k33
60
+
36
61
Usage Example
37
62
=============
38
63
You can’t perform that action at this time.
0 commit comments