Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

aws eb cli Windows get version error on colorama

I have installed awsebcli in windows 10

It was showing

2.2,!=2.18.0,<2.19,>=2.6.1->docker-compose<1.22.0,>=1.21.2->awsebcli) (1.22)
docker-compose 1.21.2 has requirement colorama<0.4,>=0.3.9; sys_platform == "win32", but you'll have colorama 0.3.7 which is incompatible.

Now when I was trying to do

eb --version I got error

 raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (colorama 0.3.7 (c:\users\rajarshi.das\appdata\roaming\python\python36\site-packages), Requirement.parse('colorama<0.4,>=0.3.9; sys_platform == "win32"'), {'docker-compose'})

I was trying to remove the colorama and install 0.3.9 version now it was showing eb is required 0.3.7 version only...

Please help.

like image 993
Rajarshi Das Avatar asked Jun 08 '18 09:06

Rajarshi Das


1 Answers

I got the same issue.

like dakshina11 said

pip install 'awsebcli==3.13.0' --upgrade --user

the older version of awsebcli==3.13.0 solved this problem.

Currently 3.14.0 still not working.

like image 91
steve joe Avatar answered Oct 05 '22 03:10

steve joe