mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
6 lines
159 B
Python
6 lines
159 B
Python
import pip
|
|
from subprocess import call
|
|
|
|
for dist in pip.get_installed_distributions():
|
|
call("pip install --upgrade " + dist.project_name, shell=True)
|