import os
file1 = open('requirement/windows_requirements.txt','r')
lines = file1.readlines()
for line in lines:
os.system('pip install '+line.strip())
close(file1)
os.system('pip install psycopg2')
os.system('pip install pymssql')
import os
file1 = open('requirement/windows_requirements.txt','r')
lines = file1.readlines()
for line in lines:
os.system('pip install '+line.strip())
close(file1)
os.system('pip install psycopg2')
os.system('pip install pymssql')