Skip to content

Commit 8654dfe

Browse files
authored
Added pypi installation instructions
1 parent b79d4c5 commit 8654dfe

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,26 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
2525
This is easily achieved by downloading
2626
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.
2727

28+
Installing from PyPI
29+
====================
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-slideshow/>`_. To install for current user:
33+
34+
.. code-block:: shell
35+
pip3 install adafruit-circuitpython-slideshow
36+
To install system-wide (this may be required in some cases):
37+
38+
.. code-block:: shell
39+
sudo pip3 install adafruit-circuitpython-slideshow
40+
To install in a virtual environment in your current project:
41+
42+
.. code-block:: shell
43+
mkdir project-name && cd project-name
44+
python3 -m venv .env
45+
source .env/bin/activate
46+
pip3 install adafruit-circuitpython-slideshow
47+
2848
Usage Example
2949
=============
3050

0 commit comments

Comments
 (0)