mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-11-04 04:38:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
import subprocess
 | 
						|
def main():
 | 
						|
    command = "pip install pandas seaborn plotly numpy dash --upgrade"
 | 
						|
    res = subprocess.call(command, shell = True)
 | 
						|
 | 
						|
    print("Returned Value: ", res)
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    main()
 |