Add installation scripts for Windows and Linux, and update README for usage instructions
		
			
				
	
	
		
			10 lines
		
	
	
		
			176 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			176 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| REM Activate the virtual environment
 | |
| call .venv\Scripts\activate
 | |
| 
 | |
| REM Run the Python script
 | |
| start pythonw main.pyw
 | |
| 
 | |
| REM Deactivate the virtual environment
 | |
| deactivate
 |