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