Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install AWSCLI on a Anaconda python distribution

Tags:

I followed instructions as per:

https://bioconda.github.io/recipes/awscli/README.html#installation 

executed: conda install awscli

Result:

Fetching package metadata: ....  Solving package specifications: .  Error:  Package missing in current osx-64 channels:     - awscli  You can search for this package on anaconda.org with      anaconda search -t conda awscli  You may need to install the anaconda-client command line client with      conda install anaconda-client 
like image 304
codingknob Avatar asked May 17 '16 17:05

codingknob


People also ask

How do I install Python packages in anaconda?

Go to Environments tab just below the Home tab and from there we can check what all packages are installed and what is not. It is very easy to install any package through anaconda navigator, simply search the required package, select package and click on apply to install it.

What is PIP install Awscli?

$ pip install awscli --upgrade --userThe --upgrade option tells pip to upgrade any requirements that are already installed. The --user option tells pip to install the program to a subdirectory of your user directory to avoid modifying libraries used by your operating system.

What packages are included in anaconda distribution?

The Anaconda distribution comes with packages that can be used on Windows, Linux, and MacOS. The individual edition includes popular package names like numpy , pandas , scipy , sklearn , tensorflow , pytorch , matplotlib , and more.


1 Answers

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

conda install -c conda-forge awscli 

source: Anaconda Cloud

like image 127
danielfrg Avatar answered Oct 07 '22 18:10

danielfrg