mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-01 06:28:39 +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)
|