File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,28 @@ or individual libraries can be installed using
5252
5353Installing from PyPI
5454=====================
55- .. note :: This library is not available on PyPI yet. Install documentation is included
56- as a standard element. Stay tuned for PyPI availability!
55+ On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
56+ PyPI <https://pypi.org/project/circuitpython-i2c-expanders/> `_.
57+ To install for current user:
58+
59+ .. code-block :: shell
60+
61+ pip3 install circuitpython-i2c-expanders
62+
63+ To install system-wide (this may be required in some cases):
64+
65+ .. code-block :: shell
66+
67+ sudo pip3 install circuitpython-i2c-expanders
68+
69+ To install in a virtual environment in your current project:
70+
71+ .. code-block :: shell
72+
73+ mkdir project-name && cd project-name
74+ python3 -m venv .venv
75+ source .env/bin/activate
76+ pip3 install circuitpython-i2c-expanders
5777
5878 Installing to a Connected CircuitPython Device with Circup
5979==========================================================
You can’t perform that action at this time.
0 commit comments