ESP32-discord/install_windows.bat
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
384 B
Batchfile

@echo off
REM Create a virtual environment
python -m venv .venv
REM Activate the virtual environment
call .venv\Scripts\activate
REM Install the required Python packages
pip install pyserial keyboard pygetwindow pyautogui mss numpy pystray pillow
REM Deactivate the virtual environment
deactivate
echo Installation complete. You can now run the application using start.bat.
pause