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