Cristal
Cristal

Reputation: 502

pip version error on cli

I am getting below error on installing aws via pip. I am using the latest version of python. Any reason to this?

Command used for this pip install awscli

Could not find a version that satisfies the requirement awscli 
(from versions: )
No matching distribution found for awscli

Upvotes: 1

Views: 1082

Answers (1)

Arhire Ionut
Arhire Ionut

Reputation: 460

Make sure you have the latest version of pip.

Also make sure that you use the right version of python for installation

The aws-cli package works on Python versions:

  • 2.6.5 and greater
  • 2.7.x and greater
  • 3.3.x and greater
  • 3.4.x and greater
  • 3.5.x and greater
  • 3.6.x and greater

To choose a python version for install append the version to "pip" command like so: pip3.6 install awscli.

Upvotes: 1

Related Questions