I am using raspberry which is running raspbian jessie OS. I tried to install/upgrade the aws-cli using steps provided at https://aws.amazon.com/cli/ Even after upgrade was successful, I get below output
pi@raspberrypi:~ $ aws --version
aws-cli/1.11.126 Python/2.7.9 Linux/4.9.28-v7+ botocore/1.5.89
This was same before installation.
Drawbacks:
I am not able to see 'iot' as option when I run aws help
. Majority of other services like ec2 & s3 are available
What can be the reason behind this behavior? How to solve this?
which aws
to view. Then dopip install awscli --upgrade
and check that it is updating in the same path. (Might needsudo
in front ofpip
.) – Inletpip install awscli --upgrade
under the same path that I got fromwhich aws
, then it shows meRequirement already satisfied
and the version is still the old one... – Quince