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 @@ -26,6 +26,30 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
26
26
This is easily achieved by downloading
27
27
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle >`_.
28
28
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
+
29
53
Usage Example
30
54
=============
31
55
You can’t perform that action at this time.
0 commit comments