I executed command pip3 install awscli --upgrade --user on my MAC and got the following:
boto3 1.8.8 has requirement botocore<1.12.0,>=1.11.8, but you'll have botocore 1.12.160 which is incompatible.
boto3 1.8.8 has requirement s3transfer<0.2.0,>=0.1.10, but you'll have s3transfer 0.2.0 which is incompatible.
I'm looking for a work around.
Thanks in advance.
brew install awscli
? – Expoundboto3-1.9.143
. Things always go crazy with installing libraries with Python. I would recommend using a Python Virtual Environment and installing your libraries in there, so that you have better control over libraries and their versions. – Casillas