8 lines
257 B
Python
8 lines
257 B
Python
import pkg_resources
|
|
from subprocess import call
|
|
|
|
|
|
packages = [dist.project_name for dist in pkg_resources.working_set]
|
|
if not "youtube-dl" in packages:
|
|
packages = ["youtube-dl"] + packages
|
|
call("pip install --upgrade " + ' '.join(packages), shell=True) |