Welcome to the Elastic Beanstalk Command Line Interface (EB CLI). For more information on a specific command, type"eb {cmd} --help".
commands: abort Cancels an environment update or deployment.
optional arguments: -h, --help show this help message and exit --debug toggle debug output --quiet suppress all output -v, --verbose toggle verbose output --profile PROFILE use a specific profile from your credential file -r REGION, --region REGION use a specific region --no-verify-ssl don't verify AWS SSL certificates --version show application/version info
Django 2.1.1 설치
아래 명령어를 실행하여, django 2.1.1 버전을 설치해줍니다.
1
pip install django==2.1.1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
(eb_env) dhkang ~/elastic_beanstalk pip install django==2.1.1 Collecting django==2.1.1 Using cached Django-2.1.1-py3-none-any.whl (7.3 MB) Collecting pytz Using cached pytz-2020.1-py2.py3-none-any.whl (510 kB) Installing collected packages: pytz, django Successfully installed django-2.1.1 pytz-2020.1 WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. You should consider upgrading via the '/home/dhkang/elastic_beanstalk/eb_env/bin/python -m pip install --upgrade pip'command. (eb_env) dhkang ~/elastic_beanstalk pip list Package Version ---------- ------- Django 2.1.1 pip 20.2.2 pytz 2020.1 setuptools 49.6.0 wheel 0.35.1 WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. You should consider upgrading via the '/home/dhkang/elastic_beanstalk/eb_env/bin/python -m pip install --upgrade pip'command.
이정도 까지, 로컬 컴퓨터에서 Elastic Beanstalk 배포 실습을 위한 기본 환경 설정을 마쳤습니다.