Browse Source

Upgrade packages if needed (for example after getting latest git commits). Tested working with new install too

master
eduard6 9 years ago
parent
commit
72295f19c6
  1. 2
      setupall.py

2
setupall.py

@ -38,5 +38,5 @@ if mode not in packages:
for x in packages[mode]:
dirtorun = os.path.join(curdir, x)
p = subprocess.Popen(['pip', 'install', '.'], cwd=dirtorun)
p = subprocess.Popen(['pip', 'install', '--upgrade', '--upgrade-strategy=only-if-needed', '.'], cwd=dirtorun)
p.wait()

Loading…
Cancel
Save