Added missing `pip install` parameter.

This commit is contained in:
Fabio Manganiello 2023-09-30 13:31:04 +02:00
parent c82f7bbfbe
commit 7bd721e6a4
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ class IntegrationEnricher:
idx += 1
if parsed_deps['pip']:
source.insert(idx, cls._shellify('pip', 'pip ' + ' '.join(deps.pip)))
source.insert(
idx, cls._shellify('pip', 'pip install ' + ' '.join(deps.pip))
)
idx += 1
for pkg_manager, sys_deps in deps.by_pkg_manager.items():