how to install AWSCLI on a Anaconda python distribution how to install AWSCLI on a Anaconda python distribution python python

how to install AWSCLI on a Anaconda python distribution


Now you can get it from conda-forge, a set of community maintained conda recipes.

conda install -c conda-forge awscli

source: Anaconda Cloud


After you have installed Anaconda, ensure that your default Python is the Anaconda installation by running your profile file, for example, in bash:

$source ~/.bash_profile

Then, install Aws CLI with pip (sudo not required):

$pip install awscli

You can then verify that the installation was successful. For example, I had the same issue. I verified it thus:

$ pythonPython 2.7.12 |Anaconda 4.2.0 (x86_64)| (default, Jul  2 2016, 17:43:17)[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)] on darwinType "help", "copyright", "credits" or "license" for more information.Anaconda is brought to you by Continuum Analytics.Please check out: http://continuum.io/thanks and https://anaconda.org>>> import s3transfer>>> quit()