Update DownloadDataDepsInstall.py

This commit is contained in:
J. Fronny 2020-06-20 12:17:13 +00:00
parent 0e53527aa3
commit edcec38f62
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@ 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 = ["youtube-dl"] + packages
call("pip install --upgrade " + ' '.join(packages), shell=True)