mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-10-31 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| import subprocess
 | |
| def main():
 | |
|     command = "pip3 install pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb influxdb-client --upgrade"
 | |
|     res = subprocess.call(command, shell = True)
 | |
| 
 | |
|     print("Returned Value: ", res)
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     main()
 | 
