diff options
-rw-r--r-- | library/pip | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/pip b/library/pip index 7ca62ca107..fe5823f1e5 100644 --- a/library/pip +++ b/library/pip @@ -137,6 +137,9 @@ def main(): pip = module.get_bin_path('python-pip', False, ['%s/bin' % env]) if not pip: + pip = module.get_bin_path('pip-python', True, ['%s/bin' % env]) + + if not pip: pip = module.get_bin_path('pip', True, ['%s/bin' % env]) state = module.params['state'] |