Add installation scripts for Windows and Linux, and update README for usage instructions
		
			
				
	
	
		
			11 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Activate the virtual environment
 | |
| source .venv/bin/activate
 | |
| 
 | |
| # Run the Python script
 | |
| pythonw main.pyw &
 | |
| 
 | |
| # Deactivate the virtual environment
 | |
| deactivate
 |