FileNotFoundError: [Errno 2] No such file or directory: 'pip': 'pip'
LinqLover opened this issue · 2 comments
LinqLover commented
On our machines, only pip3
is installed. Would be nice to add support for this setup.
LinqLover commented
Simple workaround: Patch this
like this
- subprocess.check_call(['pip', 'install', pinned])
+ subprocess.check_call(['pip3', 'install', pinned])
johantiden commented
Or add a symlink pip -> pip3 on your path, like the ubuntu package python-is-python3 does.