Add installation scripts for Windows and Linux, and update README for usage instructions
		
			
				
	
	
		
			16 lines
		
	
	
		
			384 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			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
 |