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')
posted on 2022-06-08 12:29  heidsoft  阅读(64)  评论(0编辑  收藏  举报