Add installation scripts for Windows and Linux, and update README for usage instructions
		
			
				
	
	
		
			16 lines
		
	
	
		
			373 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			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."
 |