commit d883b67e859f1154b1e15ee3212b22233a306852 parent c67c486093269012b97d836b78e5e437609b2a16 Author: ugrnm <ugrnm@web> Date: Mon, 25 May 2026 11:34:26 +0200 simpler python instructions Diffstat:
| M | unbrick01.mdwn | | | 9 | +++------ |
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/unbrick01.mdwn b/unbrick01.mdwn @@ -192,18 +192,15 @@ sudo make install Installing python so we can run a simple script that sends `evdev` (touch) events over a local socket to pd. -```bash -apk add build-base linux-headers python3 py3-pip python3-dev +```sh +apk add python3 py3-evdev ``` -Clone the repo, setup the python environment and run the python script +Clone the repo and run the python script ```bash git clone https://git.xpub.nl/ugrnm/unbrick01.git cd unbrick01/pd/startup -python3 -m venv venv -source ./venv/bin/activate -pip install -r requirements.txt python touch2pd.py ```