implemented deploy executable. It installs venv, activates it, install dependencies: FreeSimpleGUI, PySerial

This commit is contained in:
2025-10-28 16:33:29 +03:00
parent c695ee2d0c
commit 5abac34b58

6
deploy Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/bash
sudo apt install python3-venv
python3 -m venv .venv
source .venv/bin/activate
pip install FreeSimpleGUI PySerial
deactivate