File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,30 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
2626This is easily achieved by downloading
2727`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle >`_.
2828
29+ Installing from PyPI
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-avrprog/> `_. To install for current user:
33+
34+ .. code-block :: shell
35+
36+ pip3 install adafruit-circuitpython-avrprog
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-avrprog
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-avrprog
52+
2953 Usage Example
3054=============
3155
You can’t perform that action at this time.
0 commit comments