Eb : Термин 'eb' не распознается как имя команды, функции, файла сценария или работающей программы.
Я пытаюсь развернуть мое приложение Django с AWS beanstalk, следуя этой документации: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html
Все работает до этого момента:
~/ebdjango$ eb init -p python-3.6 student-archive
Когда я запускаю эту строку кода, я получаю эту ошибку:
eb : The term 'eb' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path
is correct and try again.
At line:1 char:1
+ eb init -p python-3.6 studentarchive
+ ~~
+ CategoryInfo : ObjectNotFound: (eb:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Какие могут быть причины этого? Вот мой django.config:
option_settings:
aws:elasticbeanstalk:container:python:
WSGIPath: StudentArchive/wsgi.py
Вот мои требования.txt:
asgiref==3.4.1
autopep8==1.5.7
backports.entry-points-selectable==1.1.0
certifi==2021.5.30
distlib==0.3.2
Django==3.2.6
filelock==3.0.12
pipenv==2021.5.29
platformdirs==2.2.0
pycodestyle==2.7.0
pytz==2021.1
six==1.16.0
sqlparse==0.4.1
toml==0.10.2
virtualenv==20.7.0
virtualenv-clone==0.5.6
Вам необходимо установить awsebcli, чтобы иметь возможность использовать eb
CLI команду.
python3 -m pip install awsebcli
Дополнительная информация по установке: