Unable to install AWS Elastic Beanstalk CLI (Win10, Python 3.6, Pip 9.0.1)

后端 未结 9 2029
予麋鹿
予麋鹿 2021-01-01 12:19

I am trying to install awsebcli on my machine and I am unable to run the command

eb --version

It shows this error:

\'eb\' is not         


        
9条回答
  •  余生分开走
    2021-01-01 13:02

    After a great deal of running around I managed to figure out that I was missing an additional PATH entry, both of these were required to get eb to run on windows:

    %USERPROFILE%\AppData\Local\Programs\Python\Python36\Scripts
    %USERPROFILE%\AppData\Roaming\Python\Python36\Scripts
    

    NOTE: If you have Python 3.7 installed, change "Python36" to "Python37" in both of the path entries.

提交回复
热议问题