Skip to content
Snippets Groups Projects
Commit 3d05e473 authored by Enis Afgan's avatar Enis Afgan
Browse files

Fix pip dependency installation

parent 75e8b273
No related branches found
No related tags found
No related merge requests found
...@@ -337,7 +337,7 @@ def _handle_install(args, dependencies): ...@@ -337,7 +337,7 @@ def _handle_install(args, dependencies):
if pip is None: if pip is None:
raise ImportError("Bootstrapping Pulsar dependencies requires pip library.") raise ImportError("Bootstrapping Pulsar dependencies requires pip library.")
pip.main("install", *dependencies) pip.main(["install"] + dependencies)
# def _install_pulsar_in_virtualenv(venv): # def _install_pulsar_in_virtualenv(venv):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment