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 @@ -19,6 +19,31 @@ This library is compatible with standard Character LCDs such as:
1919* `Adafruit RGB backlight negative LCD 16x2 <https://www.adafruit.com/product/399 >`_
2020* `Adafruit RGB backlight negative LCD 20x4 <https://www.adafruit.com/product/498 >`_
2121
22+ Installing from PyPI
23+ --------------------
24+
25+ On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
26+ PyPI <https://pypi.org/project/adafruit-circuitpython-charlcd/> `_. To install for current user:
27+
28+ .. code-block :: shell
29+
30+ pip3 install adafruit-circuitpython-charlcd
31+
32+ To install system-wide (this may be required in some cases):
33+
34+ .. code-block :: shell
35+
36+ sudo pip3 install adafruit-circuitpython-charlcd
37+
38+ To install in a virtual environment in your current project:
39+
40+ .. code-block :: shell
41+
42+ mkdir project-name && cd project-name
43+ python3 -m venv .env
44+ source .env/bin/activate
45+ pip3 install adafruit-circuitpython-charlcd
46+
2247 Dependencies
2348=============
2449This driver depends on:
You can’t perform that action at this time.
0 commit comments