I'm on macOS 10.13 and I've a problem after installed aws-cli. I can't use aws command in my CLI.
I've installed aws-cli with pip 18.0 used this command:
pip install awscli --upgrade --user
After that, aws command didn't work so I've checked the aws-cli install directory with this command:
python -c 'import awscli; print(awscli)'
Output:/Users/XXXXX/Library/Python/2.7/lib/python/site-packages/awscli/__init__.pyc
And I add it the output in my PATH directory, under the PATH for python.
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3:${PATH}
export PATH=$HOME/Library/Python/2.6/bin:$PATH
Unfortunate, aws commands still doesn't works. I've checked and followed steps at https://docs.aws.amazon.com/cli/latest/userguide/installing.html but wasn't resolve my problem.
What's wrong with my process ? Do you have solution for me ?