python - Does .ebextensions or requirements.txt run first in Elastic Beanstalk -


the .config file in .ebextensions or requirements.txt runs first?

i want install psycopg2 present in requirements.txt that, need install postgresql-devel, python-devel packages installed first.

when create config settings like

requirements.txt

psycopg2 

.ebextensions/mysite.config

packages:   yum:     gcc: []     python-devel: []     postgresql-devel: [] 
  1. from logs, observed that, requirements.txt executed first, raising errors prerequisites not installed.

  2. yum raising postgresql-devel not found in packages.

how fix these? going wrong?

i having same error , got work specifying version

packages:   yum:     libxslt-devel: ''     postgresql93-devel: [] 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -