13 lines
306 B
Python
13 lines
306 B
Python
|
import os
|
||
|
|
||
|
f = open("../../requirements_production.txt")
|
||
|
reqs = f.read().split("\n")
|
||
|
|
||
|
for req in reqs:
|
||
|
# ignore comments or pip options
|
||
|
if req.startswith('--') or req.startswith('#'):
|
||
|
continue
|
||
|
# ignore blank lines
|
||
|
if len(req) > 0:
|
||
|
os.system('easy_install -Z -U "%s"' % req)
|