I am installing aws cli on Mac. Previously I installed anaconda to control my python versions. So I installed python using conda. Now I want to install aws cli.
By using pip: pip3 install awscli --upgrade --user
The installation was successful. However, when I run aws --version It told me that aws command was not found.
I again tried to add it to the command line path. But I could not find where it was installed.
When I run which python It gave me /anaconda/bin/python
People say this might not be the real folder and it is true I could not find aws cli under it either. I then run ls -al /anaconda/bin/python It gives lrwxr-xr-x 1 mac staff 9 Aug 15 20:14 /anaconda/bin/python -> python3.6
I dont understand the path at all. How could I find where my aws cli installed?