aws-elastic-beanstalk-cli-setup
aws-elastic-beanstalk-cli-setup copied to clipboard
OSX Pip and Python versions off
1. Please specify the following:
-
OS: OS X
-
Shell: Bash
-
[x] I have reviewed the troubleshooting tips described here and they do not solve my problem
2. Description Not sure the best way to report this, as I patched my way through it.
During step 6 of the installer, I ran into the following issue:
The python_installer
was looking for a pip
binary, when only pip3
and pip3.7
existed
Patching the references on python_installer
line 154 (and docstring on 198) to use pip3
instead of pip
resolves the issue.
This happened again in the bundled_installer, when it was looking for python
instead of python3.7
, so I patched the file paths inside bundled_installer
install_ebcli
to use python3.7
With these changes my install worked fine and I've successfully used the eb cli since.
@justincoh , wow. That's a pretty bad. Thanks for reporting it. I think the solution to the bug is to ensure in the hundle_installer that either python
, or python3
, or python3.7
is present.