forked from platypush/platypush
Added missing pip install
parameter.
This commit is contained in:
parent
c82f7bbfbe
commit
7bd721e6a4
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,9 @@ class IntegrationEnricher:
|
||||||
idx += 1
|
idx += 1
|
||||||
|
|
||||||
if parsed_deps['pip']:
|
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
|
idx += 1
|
||||||
|
|
||||||
for pkg_manager, sys_deps in deps.by_pkg_manager.items():
|
for pkg_manager, sys_deps in deps.by_pkg_manager.items():
|
||||||
|
|
Loading…
Reference in a new issue