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