ESP32-discord/install_linux.sh
ZareMate f6aa6cd626
Change rendering method for GUI
Add installation scripts for Windows and Linux, and update README for usage instructions
2025-01-15 02:25:36 +01:00

16 lines
373 B
Bash

#!/bin/bash
# Create a virtual environment
python3 -m venv .venv
# Activate the virtual environment
source .venv/bin/activate
# Install the required Python packages
pip install pyserial keyboard pygetwindow pyautogui mss numpy pystray pillow
# Deactivate the virtual environment
deactivate
echo "Installation complete. You can now run the application using start.sh."